.hero { position: relative; min-height: 680px; overflow: hidden; background: var(--color-neutral); }
.hero__backdrop { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(255 255 255 / 96%) 0%, rgb(246 246 244 / 91%) 45%, rgb(246 246 244 / 40%) 66%, rgb(9 11 13 / 30%) 100%), url("../images/hero/home-hero-road.webp") center / cover no-repeat; }
.hero__inner { position: relative; z-index: 1; display: grid; min-height: 680px; grid-template-columns: minmax(0, 1.22fr) minmax(340px, .98fr); align-items: center; gap: clamp(2rem, 5vw, 6rem); }
.hero__content { max-width: 650px; padding-block: 4rem; }
.hero__content .eyebrow { margin-bottom: 1.25rem; }
.hero__title { max-width: 9.5ch; margin-bottom: 1.5rem; font-size: clamp(3.3rem, 6.3vw, 6.25rem); }
.hero__title span { color: var(--color-orange); }
.hero__description { margin-bottom: 2rem; color: var(--color-muted); font-size: 1rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__product { position: relative; display: grid; width: min(100%, 400px); aspect-ratio: 4 / 5; place-self: end center; place-items: center; margin-top: 1.5rem; }
.hero__product::before { position: absolute; inset: 12% -18% 3%; background: rgb(255 255 255 / 32%); border: 1px solid rgb(255 255 255 / 55%); content: ""; }
.hero__product-placeholder { position: relative; z-index: 0; display: flex; width: 62%; aspect-ratio: .66; flex-direction: column; justify-content: flex-end; padding: 1.15rem .85rem; background: linear-gradient(135deg, #16191b, #070809); box-shadow: 16px 24px 30px rgb(9 11 13 / 28%); color: var(--color-white); }
.hero__product-placeholder::before { position: absolute; top: -8%; left: 25%; width: 48%; height: 10%; background: #111315; content: ""; }
.hero__placeholder-brand { position: absolute; top: 16%; left: 0; width: 100%; padding-block: .45rem; background: var(--color-amber); color: var(--color-black); font-size: .95rem; font-weight: 900; letter-spacing: -.05em; text-align: center; }
.hero__placeholder-type { margin-bottom: .5rem; color: #b8bbbd; font-size: .56rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero__product-placeholder strong { font-size: 2.1rem; letter-spacing: -.08em; line-height: 1; }
.hero__product-placeholder > span:last-child { margin-top: .35rem; color: var(--color-amber); font-size: .9rem; font-weight: 800; }
.hero__product-image { position: absolute; z-index: 2; max-width: 100%; max-height: 100%; object-fit: contain; }
.hero__product-image.is-missing { display: none; }
.hero__animate { animation: hero-enter 620ms ease-out both; }
.hero__product.hero__animate { animation-delay: 120ms; }
@keyframes hero-enter { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 992px) { .hero, .hero__inner { min-height: 620px; } .hero__inner { gap: 1.5rem; } .hero__product { width: min(100%, 330px); } }
@media (max-width: 768px) { .hero { min-height: 0; } .hero__backdrop { background: linear-gradient(180deg, rgb(255 255 255 / 96%), rgb(246 246 244 / 88%)), url("../images/hero/home-hero-road.webp") center / cover no-repeat; } .hero__inner { min-height: 0; grid-template-columns: 1fr; gap: 0; } .hero__content { padding-top: 4.5rem; padding-bottom: 1.25rem; } .hero__product { width: min(100%, 300px); margin-block: 1.5rem 3rem; place-self: center; } }
@media (max-width: 576px) { .hero__content { padding-top: 3.5rem; } .hero__title { font-size: clamp(2.8rem, 15vw, 4rem); } .hero__actions { display: grid; } .hero__actions .button { width: 100%; } }
@media (prefers-reduced-motion: reduce) { .hero__animate { animation: none; } }
.benefit-strip { background: var(--color-charcoal); }
.benefit-strip__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.benefit-strip__item { display: flex; min-height: 148px; align-items: center; gap: 1rem; padding: 2rem clamp(1rem, 2vw, 2rem); border-left: 1px solid #303336; }
.benefit-strip__item:first-child { border-left: 0; }
.benefit-strip__icon { width: 27px; height: 27px; flex: 0 0 auto; fill: none; stroke: var(--color-amber); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.benefit-strip h2 { margin-bottom: .35rem; color: var(--color-white); font-size: .75rem; font-weight: 800; letter-spacing: .075em; line-height: 1.25; text-transform: uppercase; }
.benefit-strip p { color: #a3a6a8; font-size: .75rem; line-height: 1.45; }
@media (max-width: 768px) { .benefit-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .benefit-strip__item:nth-child(3) { border-left: 0; } .benefit-strip__item { min-height: 128px; border-top: 1px solid #303336; } .benefit-strip__item:nth-child(-n+2) { border-top: 0; } }
@media (max-width: 400px) { .benefit-strip__grid { grid-template-columns: 1fr; } .benefit-strip__item, .benefit-strip__item:nth-child(3) { min-height: 112px; border-top: 1px solid #303336; border-left: 0; } .benefit-strip__item:first-child { border-top: 0; } }
.products-overview { background: var(--color-white); }
.products-overview__intro { display: flex; align-items: end; justify-content: space-between; gap: var(--space-xl); margin-bottom: 3rem; }
.products-overview__intro .eyebrow { margin-bottom: 1rem; }
.products-overview__intro p:last-child { max-width: 39ch; color: var(--color-muted); }
.products-overview__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.product-category { display: block; padding: .5rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); transition: border-color var(--transition-base), transform var(--transition-base); }
.product-category:hover { border-color: var(--color-amber); transform: translateY(-3px); }
.product-category__media { position: relative; display: grid; aspect-ratio: 4 / 5; overflow: hidden; place-items: center; background: #e9e9e6; }
.product-category__placeholder { display: grid; width: 100%; height: 100%; place-items: center; padding: 1rem; background: linear-gradient(145deg, #ecece9, #d7d8d5); color: #8a8d8e; font-size: .65rem; font-weight: 800; letter-spacing: .08em; line-height: 1.4; text-align: center; text-transform: uppercase; }
.product-category__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-category__media img.is-missing { display: none; }
.product-category__meta { display: flex; align-items: center; justify-content: space-between; padding-top: .9rem; color: var(--color-orange); font-size: .7rem; font-weight: 800; letter-spacing: .09em; }
.product-category__meta span:last-child { font-size: 1.1rem; line-height: 1; }
.product-category h3 { min-height: 2.6em; margin-top: .45rem; font-size: .82rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.28; text-transform: uppercase; }
@media (max-width: 1200px) { .products-overview__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 768px) { .products-overview__intro { display: grid; gap: 1.25rem; margin-bottom: 2rem; } .products-overview__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .products-overview__grid { grid-template-columns: 1fr; } .product-category__media { aspect-ratio: 16 / 10; } }
.featured-product { background: var(--color-neutral); }
.featured-product__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(3rem, 9vw, 9rem); }
.featured-product__visual { display: grid; min-height: 480px; place-items: center; }
.featured-product__image-wrap { position: relative; display: grid; width: min(100%, 330px); aspect-ratio: 4 / 5; place-items: center; }
.featured-product__image-wrap::before { position: absolute; inset: 9% -20% 2%; background: rgb(255 255 255 / 50%); border: 1px solid rgb(229 229 226 / 85%); content: ""; }
.featured-product__placeholder { position: relative; z-index: 0; display: flex; width: 62%; aspect-ratio: .66; flex-direction: column; justify-content: flex-end; padding: 1rem .75rem; background: #101214; box-shadow: 14px 24px 28px rgb(9 11 13 / 20%); color: var(--color-white); }
.featured-product__placeholder::before { position: absolute; top: -8%; left: 25%; width: 48%; height: 10%; background: #111315; content: ""; }
.featured-product__placeholder span { position: absolute; top: 15%; left: 0; width: 100%; padding-block: .4rem; background: var(--color-amber); color: var(--color-black); font-size: .9rem; font-weight: 900; letter-spacing: -.05em; text-align: center; }
.featured-product__placeholder small { margin-bottom: .35rem; color: #babdbf; font-size: .5rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.featured-product__placeholder strong { font-size: 1.9rem; letter-spacing: -.08em; line-height: 1; }
.featured-product__placeholder em { margin-top: .3rem; color: var(--color-amber); font-size: .8rem; font-style: normal; font-weight: 800; }
.featured-product__image-wrap img { position: absolute; z-index: 2; max-width: 100%; max-height: 100%; object-fit: contain; }
.featured-product__image-wrap img.is-missing { display: none; }
.featured-product__content { max-width: 510px; }
.featured-product__content .eyebrow { margin-bottom: 1rem; }
.featured-product__content h2 { margin-bottom: 1.35rem; }
.featured-product__description { margin-bottom: 1.75rem; color: var(--color-muted); }
.featured-product__benefits { display: grid; gap: .75rem; margin-bottom: 2rem; }
.featured-product__benefits li { display: flex; align-items: center; gap: .7rem; font-size: .875rem; font-weight: 600; }
.featured-product__benefits li::before { display: grid; width: 16px; height: 16px; flex: 0 0 auto; place-items: center; background: var(--color-amber); color: var(--color-black); content: "✓"; font-size: .65rem; font-weight: 900; }
@media (max-width: 768px) { .featured-product__inner { grid-template-columns: 1fr; gap: 1rem; } .featured-product__visual { min-height: 340px; } .featured-product__image-wrap { width: min(100%, 270px); } .featured-product__content { max-width: none; } }
.industry-solutions { background: var(--color-white); }
.industry-solutions__intro { margin-bottom: 3rem; }
.industry-solutions__intro .eyebrow { margin-bottom: 1rem; }
.industry-solutions__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.industry-tile { position: relative; display: block; min-height: 410px; overflow: hidden; border-radius: var(--radius-sm); background: #26292b; }
.industry-tile__media, .industry-tile__media img, .industry-tile__placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }
.industry-tile__media img { object-fit: cover; transition: transform 350ms ease; }
.industry-tile:hover .industry-tile__media img { transform: scale(1.04); }
.industry-tile__media img.is-missing { display: none; }
.industry-tile__placeholder { display: grid; place-items: center; background: linear-gradient(145deg, #303437, #151719); color: rgb(255 255 255 / 22%); font-size: 4rem; font-weight: 900; letter-spacing: -.08em; }
.industry-tile__overlay { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr auto; align-items: end; padding: 4.5rem 1.35rem 1.25rem; background: linear-gradient(to bottom, transparent, rgb(9 11 13 / 88%)); color: var(--color-white); }
.industry-tile__number { grid-column: 1 / -1; margin-bottom: .45rem; color: var(--color-amber); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.industry-tile h3 { color: var(--color-white); font-size: 1rem; font-weight: 800; letter-spacing: -.035em; text-transform: uppercase; }
.industry-tile__arrow { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgb(255 255 255 / 55%); font-size: 1rem; }
@media (max-width: 992px) { .industry-solutions__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .industry-tile { min-height: 360px; } }
@media (max-width: 576px) { .industry-solutions__intro { margin-bottom: 2rem; } .industry-solutions__grid { grid-template-columns: 1fr; } .industry-tile { min-height: 320px; } }
.why-ar { background: var(--color-charcoal); }
.why-ar__intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem, 8vw, 8rem); align-items: end; margin-bottom: 4rem; }
.why-ar__intro .eyebrow { margin-bottom: 1rem; }
.why-ar__intro h2 { grid-column: 1; }
.why-ar__intro > p:last-child { grid-column: 2; color: #afb2b4; }
.why-ar__attributes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.why-ar__attributes article { display: flex; min-height: 114px; align-items: center; gap: 1rem; padding: 1.25rem clamp(1rem, 2.5vw, 2rem); border-left: 1px solid #323538; }
.why-ar__attributes article:first-child { border-left: 0; }
.why-ar__attributes svg { width: 25px; height: 25px; flex: 0 0 auto; fill: none; stroke: var(--color-amber); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }
.why-ar__attributes h3 { color: var(--color-white); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-home { background: var(--color-white); }
.about-home__inner { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(3rem, 9vw, 9rem); }
.about-home__content { max-width: 500px; }
.about-home__content .eyebrow { margin-bottom: 1rem; }
.about-home__content h2 { margin-bottom: 1.35rem; }
.about-home__content p { margin-bottom: 2rem; color: var(--color-muted); }
.about-home__media { position: relative; min-height: 440px; overflow: hidden; background: #272a2c; }
.about-home__placeholder { position: absolute; inset: 0; display: grid; place-content: center; background: linear-gradient(135deg, #3b3e40, #1c1f21); color: rgb(255 255 255 / 45%); font-size: .8rem; font-weight: 800; letter-spacing: .1em; line-height: 1.5; text-align: center; text-transform: uppercase; }
.about-home__placeholder span { color: var(--color-amber); font-size: .6rem; }
.about-home__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-home__media img.is-missing { display: none; }
.statistics { background: var(--color-neutral); }
.statistics__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.statistic { display: grid; gap: .5rem; min-height: 190px; align-content: center; padding: 2rem clamp(1rem, 3vw, 3rem); border-left: 1px solid var(--color-border); }
.statistic:first-of-type { border-left: 0; }
.statistic strong { color: var(--color-black); font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 900; letter-spacing: -.08em; line-height: 1; }
.statistic span { color: var(--color-muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }
.final-cta { background: var(--color-amber); }
.final-cta__inner { display: flex; min-height: 310px; align-items: center; justify-content: space-between; gap: 2rem; }
.final-cta h2 { max-width: 15ch; color: var(--color-black); font-size: clamp(2rem, 4vw, 4rem); font-weight: 900; letter-spacing: -.065em; line-height: .98; text-transform: uppercase; }
@media (max-width: 768px) { .why-ar__intro, .about-home__inner { grid-template-columns: 1fr; gap: 1.5rem; } .why-ar__intro { margin-bottom: 2.5rem; } .why-ar__intro > p:last-child { grid-column: auto; } .why-ar__attributes, .statistics__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .why-ar__attributes article:nth-child(3), .statistic:nth-of-type(3) { border-left: 0; } .why-ar__attributes article, .statistic { border-top: 1px solid var(--color-border); } .why-ar__attributes article { border-color: #323538; } .why-ar__attributes article:nth-child(-n+2), .statistic:nth-of-type(-n+2) { border-top: 0; } .about-home__media { min-height: 340px; } .final-cta__inner { min-height: 280px; align-items: flex-start; flex-direction: column; justify-content: center; } }
@media (max-width: 420px) { .why-ar__attributes, .statistics__grid { grid-template-columns: 1fr; } .why-ar__attributes article, .why-ar__attributes article:nth-child(3), .statistic, .statistic:nth-of-type(3) { border-top: 1px solid #323538; border-left: 0; } .statistics .statistic { border-color: var(--color-border); } .why-ar__attributes article:first-child, .statistic:first-of-type { border-top: 0; } }