/* ========================================
   EARMOR THEME — Hero, Brands, Sections
   ======================================== */

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000000;
    display: block;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.10) 100%
    );
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 320px 18px 0;
    display: block;
}

.hero__text {
    max-width: 640px;
    display: block;
}

.hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #ffffff;
    display: block;
}

.hero__title-line {
    display: block;
    color: #ffffff;
}

.hero__title-line--accent {
    color: #ffffff;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f1b300;
    margin-bottom: 32px;
    display: block;
}

.hero__scroll-hint {
    display: none;
}
.hero__scroll-hint span {
    width: 2px;
    height: 8px;
    background: #ffffff;
    border-radius: 1px;
}
.hero__scroll-hint span:nth-child(2) {
    width: 8px;
    height: 2px;
    animation: heroScrollDot 2s ease-in-out infinite;
}
@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(4px); opacity: 0.8; }
}
@keyframes heroScrollDot {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@media (max-width: 768px) {
    .hero__content { padding: 100px 20px 0; }
    .hero__subtitle { letter-spacing: 0.06em; }
}

/* ========== BRANDS ========== */
.brands {
    padding: 20px 0;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.brands__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.brands__item img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: block;
}
.brands__item img:hover { opacity: 1; }

@media (max-width: 600px) {
    .brands__inner { gap: 32px; }
}

/* ========== CATEGORIES ========== */
.categories {
    background: #0a0a0a;
    padding: 8px 0;
}

.categories__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.categories__nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.categories__arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.categories__arrow:hover {
    color: #f1b300;
    border-color: #f1b300;
    background: rgba(241, 179, 0, 0.08);
}

.categories__arrow:focus-visible {
    outline: 2px solid #f1b300;
    outline-offset: 2px;
}

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

.category-card {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
}

.category-card__img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.category-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.category-card:hover .category-card__img {
    transform: scale(1.08);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.category-card:hover .category-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.15) 100%);
}

.category-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.category-card__name {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #f1b300;
    margin-bottom: 8px;
}

.category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    transition: color 0.3s ease;
}

.category-card:hover .category-card__link {
    color: #f1b300;
}

@media (max-width: 1024px) {
    .categories__grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .categories__grid::-webkit-scrollbar { display: none; }
    .category-card {
        flex: 0 0 calc(50% - 8px);
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .category-card {
        flex: 0 0 calc(85% - 8px);
    }
}

/* ========== ABOUT SECTION ========== */
.about {
    background: #0a0a0a;
    padding: 100px 0;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.about__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.about__label {
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #fff;
    margin-bottom: 16px;
}

.about__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: #ffffff;
    margin: 0 0 28px 0;
    text-transform: none;
}

.about__title br {
    display: block;
    content: "";
    margin-bottom: 0.05em;
}

.about__desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
    max-width: 700px;
}

.about__btn svg {
    transition: transform 0.3s ease;
}

.about__btn:hover svg {
    transform: translateX(3px);
}

.about__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #141414;
}
.about__image img {
    position: absolute;
    inset: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.about__image-placeholder {
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
    .about__inner { grid-template-columns: 1fr; gap: 40px; }
    .about__image { height: 360px; }
    .about__image-placeholder { height: 360px; }
}
@media (max-width: 480px) {
    .about { padding: 72px 0; }
    .about__title { font-size: clamp(2rem, 9vw, 3rem); }
    .about__desc { font-size: 14px; }
    .about__image { height: 280px; }
    .about__image-placeholder { height: 280px; }
}

/* ========== BLOG / LATEST POSTS ========== */
.latest-posts {
    background: #000;
    padding: 20px 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.post-card {
    background: #0f0f0f;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.post-card__thumb {
    overflow: hidden;
    aspect-ratio: 16/10;
    display: block;
}
.post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.post-card:hover .post-card__thumb img {
    transform: scale(1.05);
}

.post-card__body {
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.post-card__date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.post-card__cat a {
    font-size: 12px;
    color: #f1b300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
}
.post-card__cat a:hover { text-decoration: underline; }

.post-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    color: #ffffff;
}
.post-card__title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
.post-card__title a:hover { color: #f1b300; }

.post-card__excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    flex: 1;
    margin-bottom: 16px;
}
.post-card__excerpt p { margin: 0; }

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f1b300;
    text-decoration: none;
    transition: gap 0.3s ease;
}
.read-more:hover { gap: 10px; }

@media (max-width: 1024px) {
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .posts-grid { grid-template-columns: 1fr; }
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: #0a0a0a;
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cta-section__inner {
    max-width: 680px;
    margin: 0 auto;
}

.cta-section__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.15;
}

.cta-section__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    line-height: 1.6;
}

/* ========== SINGLE ARTICLE ========== */
.site-main--single {
    padding: 120px 0 80px;
    background: #000;
    min-height: 60vh;
}

.single-article,
.page-article {
    max-width: 900px;
    margin: 0 auto;
}

.single-article .entry-header,
.page-article .entry-header {
    margin-bottom: 40px;
}

.single-article .entry-title,
.page-article .entry-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.entry-thumb {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}
.entry-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}
.entry-content h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 40px 0 16px;
}
.entry-content h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 32px 0 12px;
}
.entry-content p { margin-bottom: 1.5em; }
.entry-content a { color: #f1b300; }
.entry-content ul,
.entry-content ol {
    margin: 1em 0 1em 1.5em;
    color: rgba(255, 255, 255, 0.7);
}
.entry-content li { margin-bottom: 0.5em; }
.entry-content blockquote {
    border-left: 3px solid #f1b300;
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(241, 179, 0, 0.05);
    border-radius: 0 4px 4px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}
.entry-content figure {
    margin: 24px 0;
}
.entry-content img {
    border-radius: 4px;
}
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}
.entry-content th,
.entry-content td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    text-align: left;
}
.entry-content th {
    background: rgba(241, 179, 0, 0.1);
    color: #f1b300;
    font-weight: 600;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.post-navigation a {
    flex: 1;
    padding: 20px;
    background: #0f0f0f;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.post-navigation a:hover { background: #1a1a1a; }
.post-navigation .nav-subtitle {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}
.post-navigation .nav-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}
.post-navigation .nav-next { text-align: right; }

/* ========== COMMENTS ========== */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.comments-area h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 24px;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comment-list .comment {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.comment-author {
    font-weight: 600;
    color: #ffffff;
}
.comment-metadata {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}
.comment-body {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}
.comment-reply-link {
    font-size: 13px;
    color: #f1b300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.comment-form p { margin-bottom: 16px; }
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}
.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #f1b300;
}
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form p.submit { margin-bottom: 0; }

/* ========== HERO SLIDER ========== */
.hero__slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease-in-out, visibility 0.9s ease-in-out;
    z-index: 1;
}

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

.hero__slide .hero__bg-img {
    transform: scale(1.08);
    transition: transform 6s ease;
}

.hero__slide.is-active .hero__bg-img {
    transform: scale(1);
}

.hero__controls {
    position: absolute;
    bottom: 52px;
    left: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero__arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero__arrow:hover {
    background: #f1b300;
    border-color: #f1b300;
    color: #000000;
}

.hero__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero__dot.is-active {
    background: #f1b300;
    transform: scale(1.3);
}

.hero__dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .hero__controls {
        left: 20px;
        bottom: 90px;
        gap: 14px;
    }
    .hero__arrow {
        width: 36px;
        height: 36px;
    }
    .hero__arrow svg {
        width: 16px;
        height: 16px;
    }
    .hero__dots {
        gap: 8px;
    }
    .hero__dot {
        width: 8px;
        height: 8px;
    }
}

/* ========== BEST SELLERS ========== */
.bestsellers {
    background: #000000;
    padding: 80px 0;
    overflow: hidden;
}

.bestsellers__inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: center;
}

.bestsellers__text {
    color: #ffffff;
}

.bestsellers__title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.08;
    text-transform: none;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.bestsellers__title span {
    display: block;
}

.bestsellers__desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
    max-width: 320px;
}

.bestsellers__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f1b300;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.bestsellers__cta:hover { gap: 12px; }

.bestsellers__slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.bestsellers__arrow {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.bestsellers__arrow:hover {
    border-color: #f1b300;
    color: #f1b300;
    background: rgba(241, 179, 0, 0.08);
}

.bestsellers__arrow:focus-visible {
    outline: 2px solid #f1b300;
    outline-offset: 2px;
}

.bestsellers__slider {
    flex: 1;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.bestsellers__slider::-webkit-scrollbar { display: none; }

.bestseller-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 200px;
    max-width: none;
    background: #f1b300;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bestseller-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(241, 179, 0, 0.18);
}

.bestseller-card__visual {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f1b300;
}

.bestseller-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 16px;
    box-sizing: border-box;
}

.bestseller-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.55);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bestseller-card__body {
    padding: 14px 16px 18px;
    background: #f1b300;
}

.bestseller-card__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    color: #000000;
    margin: 0 0 6px;
}

.bestseller-card__title a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.bestseller-card__title a:hover { opacity: 0.75; }

.bestseller-card__price {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    opacity: 0.85;
}

.bestsellers__empty {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .bestsellers__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .bestsellers__text { text-align: center; }
    .bestsellers__desc { margin-left: auto; margin-right: auto; }
    .bestseller-card { flex: 0 0 calc((100% - 20px) / 2); min-width: 220px; }
}

@media (max-width: 600px) {
    .bestsellers { padding: 70px 0; }
    .bestsellers__title { font-size: 2rem; }
    .bestsellers__arrow { display: none; }
    .bestsellers__slider { gap: 14px; }
    .bestseller-card { flex: 0 0 70%; min-width: 180px; }
}

/* ===== BUILT FOR SHOOTING ===== */
.built-for {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0;
    background: #0a0a0a;
}

.built-for__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.built-for__bg-img,
.built-for__bg-video,
.built-for__bg-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.built-for__bg-video {
    z-index: 0;
}

.built-for__bg-placeholder {
    background: #1a1a1a;
}

.built-for__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

.built-for__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 100vh;
    padding: 80px 40px 60px;
    text-align: left;
}

.built-for__text {
    max-width: 900px;
    margin: 0 0 48px;
}

.built-for__title {
    font-size: clamp(3.2rem, 9vw, 7.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.built-for__subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #f1b300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.built-for__videos {
    width: 100%;
    max-width: 1800px;
}

.built-for__thumbs {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.built-for__thumb {
    position: relative;
    flex: 0 0 calc(25% - 12px);
    max-width: 240px;
    aspect-ratio: 16/9;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.built-for__thumb:hover {
    border-color: #f1b300;
    transform: translateY(-4px);
}

.built-for__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.built-for__thumb-fallback {
    filter: saturate(0.85) contrast(1.05);
}

.built-for__thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    font-weight: 700;
}

.built-for__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
}

.built-for__thumb:hover .built-for__play {
    background: rgba(241, 179, 0, 0.25);
}

.built-for__play svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
    .built-for__container { padding: 60px 0 40px; }
    .built-for__title { font-size: clamp(2.4rem, 11vw, 4rem); }
    .built-for__text { margin-bottom: 36px; }
    .built-for__thumb {
        flex: 0 0 calc(50% - 8px);
        max-width: none;
    }
}

/* ===== TECH ECOSYSTEM ===== */
.tech-ecosystem {
    position: relative;
    background: #0a0a0a;
    padding: 100px 20px;
    overflow: hidden;
}

.tech-ecosystem__inner {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    min-height: 600px;
}

.tech-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tech-line-base {
    stroke: #2a2a2a;
    stroke-width: 0.15;
}

.tech-line-flow {
    fill: none;
    stroke: #f1b300;
    stroke-width: 0.2;
    stroke-dasharray: 4 34;
    stroke-linecap: round;
    opacity: 0.85;
}

.tech-line-flow--in {
    animation: tech-flow-in 5s linear infinite;
}

.tech-line-flow--out {
    animation: tech-flow-out 5s linear infinite;
}

@keyframes tech-flow-in {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -34; }
}

@keyframes tech-flow-out {
    0% { stroke-dashoffset: -34; }
    100% { stroke-dashoffset: 0; }
}

.tech-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(120px, 16vw, 240px);
    z-index: 2;
}

.tech-center img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(241, 179, 0, 0.25));
}

.tech-node {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 3;
}

.tech-node__hex {
    width: clamp(72px, 8.5vw, 120px);
    animation: tech-float 4.5s ease-in-out infinite;
    will-change: transform;
}

.tech-node__hex svg {
    width: 100%;
    height: auto;
    display: block;
}

.tech-node__bg {
    fill: #4a4a4a;
    transition: fill 0.4s ease;
}

.tech-node:hover .tech-node__bg {
    fill: #5a5a5a;
}

.tech-node__icon {
    color: #ffffff;
}

.tech-node__hex--gold {
    width: clamp(40px, 5vw, 72px);
}

.tech-node__label {
    margin: 0;
    text-align: center;
    color: #f1b300;
    font-size: clamp(11px, 1.15vw, 16px);
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tech-node--noise .tech-node__hex { animation-delay: 0s; }
.tech-node--situational .tech-node__hex { animation-delay: 0.7s; }
.tech-node--voice .tech-node__hex { animation-delay: 1.4s; }
.tech-node--emi .tech-node__hex { animation-delay: 2.1s; }
.tech-node--aic .tech-node__hex { animation-delay: 2.8s; }
.tech-node--gold-left .tech-node__hex { animation-delay: 1.0s; }
.tech-node--gold-right .tech-node__hex { animation-delay: 1.8s; }

@keyframes tech-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@media (max-width: 1024px) {
    .tech-ecosystem__inner {
        aspect-ratio: auto;
        min-height: 900px;
    }
    .tech-node__label {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .tech-ecosystem { padding: 60px 16px; }
    .tech-ecosystem__inner {
        min-height: 700px;
        aspect-ratio: 4 / 5;
    }
    .tech-node__hex {
        width: clamp(56px, 14vw, 90px);
    }
    .tech-node__hex--gold {
        width: clamp(32px, 9vw, 56px);
    }
    .tech-node__label {
        font-size: 10px;
    }
}

/* ===== BRAND AMBASSADORS ===== */
.brand-ambassadors,
.brand-ambassadors *,
.brand-ambassadors *::before,
.brand-ambassadors *::after {
    box-sizing: border-box;
}

.brand-ambassadors {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000000;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, Arial, sans-serif;
}

.brand-ambassadors__inner {
    width: 100%;
    padding: 52px 24px;
}

.brand-ambassadors__stage {
    position: relative;
    width: min(1350px, 100%);
    aspect-ratio: 867 / 1000;
    margin: 0 auto;
    overflow: hidden;
    background: #000000;
    isolation: isolate;
}

.brand-ambassadors__hexagon {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 0;
    pointer-events: none;
}

.brand-ambassadors__title {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 18%;
    width: 70%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 700;
    line-height: .92em;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    pointer-events: none;
}

.brand-ambassadors__title-line {
    display: block;
    white-space: nowrap;
}

.brand-ambassadors__gallery {
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 52%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.brand-ambassadors__viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 36px 6px 12px;
    box-sizing: border-box;
}

.brand-ambassadors__track {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.brand-ambassadors__slide {
    position: relative;
    z-index: 1;
    flex: 0 0 12.5%;
    width: 12.5%;
    height: 100%;
    margin: 0;
    transition: transform .3s ease, filter .3s ease;
    cursor: pointer;
}

.brand-ambassadors__slide:first-child {
    margin-left: 0;
}

.brand-ambassadors__slide:hover,
.brand-ambassadors__slide.is-active {
    z-index: 20;
    transform: scale(1.08);
    transform-origin: bottom center;
    filter: brightness(1.05);
}

.brand-ambassadors__person-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.brand-ambassadors__person {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 86%;
    object-fit: cover;
    object-position: center top;
    border: 0;
    pointer-events: none;
}

.brand-ambassadors__person--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1b300;
    background: #111111;
}

.brand-ambassadors__person--placeholder svg {
    width: 60%;
    height: 60%;
}

.brand-ambassadors__caption {
    position: absolute;
    z-index: 4;
    left: 8px;
    bottom: 10px;
    max-width: calc(100% - 16px);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
    transition: opacity .3s ease;
}

.brand-ambassadors__slide.is-active .brand-ambassadors__caption {
    opacity: 1;
}

.brand-ambassadors__controls {
    position: absolute;
    z-index: 30;
    left: 50%;
    top: 82%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translate(-50%, -50%);
}

.brand-ambassadors__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #6A6A6A;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.brand-ambassadors__arrow span {
    display: block;
    font-size: 21px;
    line-height: 1;
    margin-top: -2px;
}

.brand-ambassadors__arrow:hover {
    background-color: #f1b300;
    color: #0a0a0a;
}

.brand-ambassadors__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.brand-ambassadors__dot {
    display: block;
    width: 6px;
    height: 6px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: #B7B7B7;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.brand-ambassadors__dot.is-active {
    background-color: #FFFFFF;
}

@media (max-width: 767px) {
    .brand-ambassadors__stage {
        width: min(520px, 100%);
    }
    .brand-ambassadors__viewport {
        overflow: hidden;
        touch-action: pan-y;
    }
    .brand-ambassadors__track {
        justify-content: flex-start;
        align-items: flex-end;
        transform: translate3d(0, 0, 0);
        transition: transform .42s cubic-bezier(.22, .61, .36, 1);
        will-change: transform;
    }
    .brand-ambassadors__slide {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        flex: 0 0 50%;
        width: 50%;
        height: 100%;
        margin-left: 0;
        cursor: default;
        transition: none;
    }
    .brand-ambassadors__slide:hover,
    .brand-ambassadors__slide.is-active {
        transform: none;
        filter: none;
    }
    .brand-ambassadors__person {
        width: 100%;
        height: 86%;
        object-fit: contain;
        object-position: center top;
    }
    .brand-ambassadors__title-line {
        white-space: normal;
    }
}

/* ===== CERTIFICATIONS / VALIDATED FOR PROFESSIONAL USE ===== */
.certifications,
.certifications *,
.certifications *::before,
.certifications *::after {
    box-sizing: border-box;
}

.certifications {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #0a0a0a;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, Arial, sans-serif;
}

.certifications__inner {
    width: min(1800px, 100%);
    margin: 0 auto;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: minmax(320px, 1.7fr) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.certifications__text {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #FFFFFF;
    min-height: 620px;
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("/wp-content/uploads/2026/09/Validated.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.certifications__text::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.certifications__text > * {
    position: relative;
    z-index: 1;
}

.certifications__title {
    margin: 0 0 28px;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.05;
    color: #FFFFFF;
    text-transform: none;
}

.certifications__title span {
    display: block;
}

.certifications__desc {
    margin: 0;
    max-width: 560px;
    color: #E5E5E5;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
}

.certifications__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: none;
}

.certifications__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid #f1b300;
}

.certifications__row:last-child {
    border-bottom: none;
}

.certifications__row--sides {
    grid-template-columns: 1fr 1fr;
}

.certifications__row--sides .certifications__item:last-child {
    text-align: center;
}

.certifications__row--sides .certifications__item {
    text-align: center;
}

.certifications__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    color: #FFFFFF;
    position: relative;
}

.certifications__item + .certifications__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #f1b300;
}

.certifications__row--sides .certifications__item + .certifications__item::before {
    top: 0;
    bottom: 0;
}

.certifications__logo {
    display: block;
    width: 80px;
    height: 42px;
    margin-bottom: 8px;
}

.certifications__caption {
    display: block;
    color: #f1b300;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

@media (max-width: 960px) {
    .certifications__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 64px 24px;
    }
    .certifications__row {
        grid-template-columns: repeat(3, 1fr);
    }
    .certifications__row--sides {
        grid-template-columns: repeat(2, 1fr);
    }
    .certifications__desc {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .certifications__title {
        font-size: 30px;
    }
    .certifications__item {
        padding: 22px 8px;
    }
    .certifications__logo {
        width: 80px;
        height: 42px;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    position: relative;
    width: 100%;
    background-color: #0a0a0a;
/*     border-top: 1px solid #f1b300; */
    color: #E5E5E5;
    font-family: Arial, Helvetica, sans-serif;
    padding: 56px 0 32px;
}

.site-footer__inner {
    width: min(1350px, 100%);
    margin: 0 auto;
    padding: 0 24px;
	border-top:1px solid rgba(157,157,157,0.4);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.6fr 1fr;
    gap: 0;
}

.site-footer__col {
    position: relative;
    padding: 8px 28px;
    color: #C9C9C9;
    font-size: 14px;
    line-height: 1.7;
}

.site-footer__col + .site-footer__col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background-color: rgba(157,157,157,0.4);
}

.site-footer__col h4 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.site-footer__col h4.site-footer__sub {
    margin-top: 18px;
    margin-bottom: 14px;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__list li {
    margin: 0;
    padding: 4px 0;
}

.site-footer__list a,
.site-footer__contact a {
    color: #C9C9C9;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__list a:hover,
.site-footer__contact a:hover {
    color: #f1b300;
}

.site-footer__social {
    display: flex;
    gap: 14px;
    margin: 4px 0 18px;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #FFFFFF;
    background-color: transparent;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    background-color: #141414;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-footer__social a:hover {
    color: #f1b300;
    background-color: #1f1f1f;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    color: #FFFFFF;
    font-size: 14px;
}

.site-footer__subscribe {
    display: flex;
    width: 100%;
    max-width: 320px;
    margin-top: 6px;
}

.site-footer__subscribe input[type="email"] {
    flex: 1;
    min-width: 0;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #2a2a2a;
    border-right: none;
    background-color: #FFFFFF;
    color: #111111;
    font-size: 14px;
    outline: none;
}

.site-footer__subscribe input[type="email"]::placeholder {
    color: #888888;
}

.site-footer__subscribe button {
    height: 40px;
    padding: 0 18px;
    border: none;
    background-color: #f1b300;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.site-footer__subscribe button:hover {
    background-color: #ffc933;
}

.site-footer__col--brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 28px;
}

.site-footer__logo img {
    display: block;
    max-width: 180px;
    height: auto;
}

.site-footer__bottom {
    margin-top: 0px;
    padding-top: 20px;
    border-top: 1px solid rgba(241, 179, 0, 0.25);
    text-align: center;
    color: #888888;
    font-size: 13px;
}

.site-footer__bottom p {
    margin: 0;
}

@media (max-width: 1080px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .site-footer__col:nth-child(3)::before,
    .site-footer__col:nth-child(4)::before {
        display: none;
    }
    .site-footer__col--brand {
        grid-column: 1 / -1;
        margin-top: 24px;
        padding-top: 28px;
/*         border-top: 1px solid #f1b300; */
    }
}

@media (max-width: 640px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
    .site-footer__col + .site-footer__col::before {
        display: none;
    }
    .site-footer__col {
        padding: 20px 0;
        border-top: 1px solid rgba(241, 179, 0, 0.25);
    }
    .site-footer__col:first-child {
        border-top: none;
    }
    .site-footer__col--brand {
        border-top: 1px solid #f1b300;
    }
}

/* EARMOR_MOBILE_FOOTER_FIX (2026-09-16) — 移动端品牌格与 DEALER 顶对齐（裁掉 logo 图自带留白） */
@media (max-width: 640px) {
  .site-footer .site-footer__col--brand { margin-top: 0 !important; align-items: flex-start !important; }
  .site-footer .site-footer__col--brand .site-footer__logo { display: block; overflow: hidden; height: 62px; line-height: 0; }
  .site-footer .site-footer__col--brand .site-footer__logo img { width: 132px; height: 132px; max-width: none; margin-top: -37px; }
}

/* EARMOR_MOBILE_MENU_FIX (2026-09-16) — 移动端菜单：二级子菜单展开 + 任意滚动位置可用 */
.earmor-mobile-nav__list > li.active > .sub-menu { display: block; }
.earmor-mobile-panel { bottom: auto; top: 90px; height: calc(100vh - 90px); height: calc(100dvh - 90px); }


/* EARMOR_CRUMBS_FIX (2026-09-16) — 面包屑让开固定头部（实高 90px），不与 logo 过近/重合 */
.pc-crumbs__inner { padding-top: 108px !important; }
@media (max-width: 680px) { .pc-crumbs__inner { padding-top: 102px !important; } }
