:root {
    --black: #0a0a0a;
    --charcoal: #131313;
    --charcoal-light: #1d1d1d;
    --white: #f5f5f2;
    --gray: #aaa9a4;
    --gray-dark: #676763;
    --accent: #d8ff3e;
    --border: rgba(255, 255, 255, 0.14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #080808;
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100%;
    background: transparent;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

img {
    display: block;
    width: 100%;
}

button,
input {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    min-height: 76px;
    padding: 0 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(10, 10, 10, 0.86);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    width: auto;
    height: 60px;
}

.logo span,
.footer-logo span {
    color: var(--gray);
    font-weight: 500;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav a {
    color: var(--gray);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.site-nav a:hover {
    color: var(--white);
}

.site-nav .nav-shop {
    padding: 11px 20px;
    color: var(--black);
    background: var(--accent);
    border: 1px solid var(--accent);
}

.site-nav .nav-shop:hover {
    color: var(--white);
    background: transparent;
}

.menu-toggle {
    display: none;
    color: var(--white);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 1.75rem;
}


/* =========================================
   FIXED VIDEO BACKGROUND / HERO
========================================= */

.site-video-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    pointer-events: none;
}

.site-video-background video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.site-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.58) 0%,
            rgba(0, 0, 0, 0.24) 58%,
            rgba(0, 0, 0, 0.18) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.24) 70%,
            rgba(0, 0, 0, 0.52) 100%
        );
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding: 150px 8% 90px;
    display: flex;
    align-items: center;
    overflow: visible;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    max-width: 520px;
}

.hero-content .eyebrow {
    margin-bottom: 14px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
}

.hero-content h1 {
    max-width: 520px;
    margin: 0;
    font-size: clamp(2.75rem, 6vw, 5.75rem);
    line-height: 0.92;
}

.hero-text {
    max-width: 480px;
    margin-top: 20px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.55;
}

.hero-actions {
    margin-top: 44px;

    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.button {
    min-width: 190px;
    padding: 16px 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--white);

    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

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

.button-primary {
    color: var(--black);
    background: var(--accent);
    border-color: var(--accent);
}

.button-primary:hover {
    color: var(--white);
    background: transparent;
}

.button-secondary {
    color: var(--white);
    background: transparent;
}

.button-secondary:hover {
    color: var(--black);
    background: var(--white);
}

.scroll-prompt {
    position: absolute;
    bottom: 34px;
    left: 50%;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;

    color: var(--gray-dark);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;

    transform: translateX(-50%);
}

.scroll-prompt span {
    color: var(--accent);
    font-size: 1.1rem;
}

.statement-section,
.featured-section,
.culture-section,
.about-section,
.email-section {
    padding: 110px 8%;
}

.statement-section {
    position: relative;
    background: rgba(245, 245, 242, 0.96);
    color: var(--black);
}

.section-label {
    position: absolute;
    top: 0;
    right: 8%;

    padding: 12px 20px;

    color: var(--black);
    background: var(--accent);

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.statement-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 9%;
}

.statement-section .eyebrow {
    color: var(--gray-dark);
}

.statement-section h2,
.featured-section h2,
.culture-section h2,
.about-section h2,
.email-section h2 {
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.statement-section h2 span,
.culture-section h2 span,
.about-section h2 span {
    display: block;
    color: var(--gray-dark);
}

.statement-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;

    color: #343432;
    font-size: 1.08rem;
}

.statement-emphasis {
    padding-left: 20px;
    border-left: 4px solid var(--accent);

    color: var(--black);
    font-weight: 800;
}

.featured-section {
    background: rgba(19, 19, 19, 0.92);
}

.section-heading {
    margin-bottom: 54px;

    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading h2 {
    max-width: 700px;
}

.text-link {
    flex-shrink: 0;

    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.design-card {
    min-height: 560px;
    display: flex;
    flex-direction: column;

    background: var(--black);
    border: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.design-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 255, 62, 0.65);
}

.design-card-large {
    grid-row: span 2;
}

.card-image {
    min-height: 310px;
}

.design-card-large .card-image {
    min-height: 660px;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gray-dark);
    background:
        linear-gradient(
            135deg,
            rgba(216, 255, 62, 0.05),
            transparent
        ),
        var(--charcoal-light);

    border: 1px dashed rgba(255, 255, 255, 0.15);

    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.card-content {
    padding: 32px;
}

.card-number {
    margin-bottom: 10px;

    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.card-content h3 {
    font-size: 1.75rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.card-content > p:not(.card-number) {
    margin-top: 16px;
    color: var(--gray);
}

.card-content a {
    margin-top: 24px;
    display: inline-block;

    color: var(--white);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.card-content a:hover {
    color: var(--accent);
}

.culture-section {
    background: rgba(10, 10, 10, 0.86);
}

.culture-intro {
    max-width: 900px;
    margin-bottom: 64px;
}

.culture-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.culture-panel {
    min-height: 410px;
    padding: 42px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: var(--charcoal);
    border: 1px solid var(--border);
}

.featured-panel {
    color: var(--black);
    background: var(--accent);
}

.panel-kicker {
    margin-bottom: auto;

    color: var(--gray-dark);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.featured-panel .panel-kicker {
    color: rgba(0, 0, 0, 0.55);
}

.culture-panel h3 {
    font-size: 1.75rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.culture-panel > p:last-child {
    margin-top: 16px;
    color: var(--gray);
}

.featured-panel > p:last-child {
    color: rgba(0, 0, 0, 0.7);
}

.about-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8%;
    align-items: center;

    background: rgba(245, 245, 242, 0.96);
    color: var(--black);
}

.about-art {
    min-height: 650px;
    color: var(--gray-dark);
    background: #dadad5;
    border-color: rgba(0, 0, 0, 0.2);
}

.about-content .eyebrow {
    color: var(--gray-dark);
}

.about-content > p:not(.eyebrow) {
    margin-top: 24px;

    color: #393936;
    font-size: 1.05rem;
}

.about-content .button {
    margin-top: 36px;
}

.email-section {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 8%;
    align-items: center;

    background: rgba(216, 255, 62, 0.94);
    color: var(--black);
}

.email-section .eyebrow {
    color: rgba(0, 0, 0, 0.58);
}

.email-section h2 {
    max-width: 800px;
}

.email-section p:last-child {
    max-width: 620px;
    margin-top: 18px;
    color: rgba(0, 0, 0, 0.65);
}

.email-form {
    display: flex;
}

.email-form input {
    min-width: 0;
    flex: 1;

    padding: 18px 20px;

    color: var(--black);
    background: rgba(255, 255, 255, 0.55);

    border: 2px solid var(--black);
    border-right: 0;
    outline: none;
}

.email-form input::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

.email-form button {
    padding: 18px 28px;

    color: var(--white);
    background: var(--black);
    border: 2px solid var(--black);

    cursor: pointer;

    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.email-form button:hover {
    color: var(--black);
    background: transparent;
}

.site-footer {
    padding: 60px 8% 30px;

    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;

    background: rgba(5, 5, 5, 0.97);
    border-top: 1px solid var(--border);
}

.site-footer > div:first-child p {
    margin-top: 8px;
    color: var(--gray-dark);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 28px;

    color: var(--gray-dark);
    border-top: 1px solid var(--border);

    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 76px;
        right: -100%;

        width: min(340px, 86vw);
        height: calc(100vh - 76px);
        padding: 45px 30px;

        flex-direction: column;
        align-items: stretch;
        gap: 0;

        background: var(--black);
        border-left: 1px solid var(--border);

        transition: right 0.3s ease;
    }

    .site-nav.open {
        right: 0;
    }

    .site-nav a {
        padding: 18px 0;
        border-bottom: 1px solid var(--border);
    }

    .site-nav .nav-shop {
        margin-top: 24px;
        padding: 14px 18px;
        text-align: center;
    }

    .statement-grid,
    .about-section,
    .email-section {
        grid-template-columns: 1fr;
    }

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

    .design-card-large {
        grid-row: auto;
    }

    .design-card-large .card-image {
        min-height: 420px;
    }

    .culture-panels {
        grid-template-columns: 1fr;
    }

    .culture-panel {
        min-height: 320px;
    }

    .about-art {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.about-logo {
    width: min(420px, 90%);
    height: auto;
    display: block;
}

    .email-form {
        max-width: 620px;
    }
}

@media (max-width: 620px) {
    .site-header {
        padding: 0 20px;
    }

    .hero {
        min-height: 82vh;
        padding: 130px 20px 90px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .statement-section,
    .featured-section,
    .culture-section,
    .about-section,
    .email-section {
        padding: 82px 20px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .card-image,
    .design-card-large .card-image {
        min-height: 340px;
    }

    .card-content {
        padding: 26px;
    }

    .culture-panel {
        padding: 30px;
    }

    .about-art {
        min-height: 380px;
    }

    .email-form {
        flex-direction: column;
        gap: 12px;
    }

    .email-form input {
        border-right: 2px solid var(--black);
    }

    .site-footer {
        grid-template-columns: 1fr;
        padding: 50px 20px 26px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .copyright {
        grid-column: auto;
    }
}

/* =========================================
   JOIN THE GYM FLOOR / COMMUNITY
========================================= */

.gym-floor-section {
    padding: 110px 8%;
    background: rgba(10, 10, 10, 0.86);
    color: var(--white);
    border-top: 1px solid var(--border);
}

.gym-floor-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.gym-floor-heading {
    max-width: 900px;
    margin-bottom: 62px;
}

.gym-floor-heading h2,
.community-stories-heading h2 {
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.gym-floor-heading h2 span {
    display: block;
    color: var(--gray-dark);
}

.gym-floor-intro {
    max-width: 760px;
    margin-top: 24px;
    color: var(--gray);
    font-size: 1.08rem;
}

/* Community code */

.community-code {
    margin-bottom: 72px;
    padding: 44px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;

    background: var(--charcoal);
    border: 1px solid var(--border);
    border-left: 5px solid var(--accent);
}

.community-code-heading h3 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.community-code-heading h3 span {
    display: block;
    color: var(--gray-dark);
}

.community-code-heading > p:last-child {
    max-width: 580px;
    margin-top: 20px;
    color: var(--gray);
}

.community-code-list {
    list-style: none;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.community-code-list li {
    position: relative;
    padding-left: 30px;
    color: var(--gray);
}

.community-code-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;

    color: var(--accent);
    font-weight: 900;
}

/* Community story heading */

.community-stories-heading {
    margin-bottom: 40px;

    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.community-stories-heading h2 {
    max-width: 760px;
}

/* Story cards */

.gym-floor-stories {
    margin-bottom: 48px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gym-story-card {
    min-height: 330px;
    padding: 32px;

    display: flex;
    flex-direction: column;

    background: var(--charcoal);
    border: 1px solid var(--border);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.gym-story-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 255, 62, 0.65);
}

.story-category {
    margin-bottom: 26px;

    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gym-story-card blockquote {
    margin: 0 0 30px;

    color: var(--white);
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.5;
}

.story-note {
    margin-top: auto;

    color: var(--gray-dark);
    font-size: 0.88rem;
}

/* Share panel */

.share-story-panel {
    margin-bottom: 28px;
    padding: 42px;

    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;

    color: var(--black);
    background: var(--accent);
}

.share-story-panel .eyebrow {
    color: rgba(0, 0, 0, 0.58);
}

.share-story-panel h3 {
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.share-story-panel h3 span {
    display: block;
    color: rgba(0, 0, 0, 0.58);
}

.share-story-panel p:last-child {
    max-width: 700px;
    margin-top: 16px;
    color: rgba(0, 0, 0, 0.68);
}

.share-story-panel .button-primary {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.share-story-panel .button-primary:hover {
    color: var(--black);
    background: transparent;
}

/* Discussion area */

.gym-floor-discussion {
    padding: 42px;

    background: var(--charcoal);
    border: 1px solid var(--border);
}

.discussion-heading {
    max-width: 800px;
    margin-bottom: 30px;
}

.discussion-heading h3 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.discussion-heading > p:last-child {
    margin-top: 16px;
    color: var(--gray);
}

.discussion-heading strong {
    color: var(--white);
}

.discussion-placeholder {
    min-height: 300px;
    padding: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: var(--gray-dark);
    background: var(--black);
    border: 1px dashed rgba(255, 255, 255, 0.22);

    text-align: center;
}

.discussion-placeholder-title {
    margin-bottom: 8px;

    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Story permission note */

.story-permission-note {
    margin-top: 24px;
    padding: 26px 30px;

    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
}

.story-permission-note .eyebrow {
    margin-bottom: 10px;
}

.story-permission-note > p:last-child {
    max-width: 900px;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* Community responsive layout */

@media (max-width: 900px) {
    .community-code,
    .share-story-panel {
        grid-template-columns: 1fr;
    }

    .gym-floor-stories {
        grid-template-columns: 1fr;
    }

    .gym-story-card {
        min-height: 260px;
    }

    .share-story-panel .button {
        width: fit-content;
    }
}

@media (max-width: 620px) {
    .gym-floor-section {
        padding: 82px 20px;
    }

    .community-stories-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .community-code,
    .share-story-panel,
    .gym-floor-discussion {
        padding: 28px;
    }

    .share-story-panel .button {
        width: 100%;
    }

    .discussion-placeholder {
        min-height: 250px;
        padding: 28px 20px;
    }

    .story-permission-note {
        padding: 22px;
    }
}


/* =========================================
   TRANSLUCENT SECTION ENHANCEMENTS
========================================= */

.featured-section,
.culture-section,
.gym-floor-section {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.design-card,
.culture-panel,
.community-code,
.gym-story-card,
.gym-floor-discussion,
.discussion-placeholder {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* =========================================================
   ROTATING FOURTHWALL PRODUCT SHOWCASE
   ========================================================= */

.featured-section {
    position: relative;
}

.featured-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.featured-status {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.72;
}

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

.featured-control {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.72);
    color: inherit;
    font: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.featured-control:hover,
.featured-control:focus-visible {
    transform: translateY(-2px);
    border-color: currentColor;
    background: rgba(255, 255, 255, 0.1);
}

.design-card {
    transition:
        opacity 280ms ease,
        transform 280ms ease;
}

.design-card.is-changing {
    opacity: 0;
    transform: translateY(12px);
}

.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.product-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 20rem;
    object-fit: cover;
    object-position: center;
}

.design-card-large .product-image {
    min-height: 30rem;
}

.product-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 20rem;
    padding: 2rem;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.025)
        );
    text-align: center;
}

.design-card-large .product-placeholder {
    min-height: 30rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 0.85rem;
}

.product-price {
    margin: 0;
    font-weight: 700;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 1.7rem;
    padding: 0.25rem 0.65rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.product-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.75rem;
}

.product-dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.3;
    cursor: pointer;
    transition:
        width 180ms ease,
        opacity 180ms ease;
}

.product-dot[aria-current="true"] {
    width: 1.65rem;
    opacity: 1;
}

@media (max-width: 720px) {
    .featured-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-image,
    .design-card-large .product-image,
    .product-placeholder,
    .design-card-large .product-placeholder {
        min-height: 19rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .design-card,
    .featured-control,
    .product-dot {
        transition: none;
    }
}


/* =========================================
   HERO RESPONSIVE / REDUCED MOTION
========================================= */

/* Desktop and wide laptop screens */
@media (min-width: 1101px) {
    .site-video-background video {
        object-fit: cover;
        object-position: center center;
    }
}

/* Tablets and small laptops */
@media (min-width: 701px) and (max-width: 1100px) {
    .site-video-background {
        background: #080808;
    }

    .site-video-background video {
        width: 100%;
        height: 100%;
        object-position: center center;
    }

    .hero {
        min-height: 100svh;
        padding: 132px 6% 78px;
    }

    .hero-content {
        width: min(500px, 62vw);
        max-width: 500px;
    }

    .hero-content h1 {
        font-size: clamp(2.8rem, 7vw, 4.8rem);
    }

    .hero-text {
        max-width: 440px;
        font-size: 1rem;
    }
}

/* Portrait tablets: show the entire video frame */
@media (min-width: 701px) and (max-width: 1100px) and (orientation: portrait) {
    .site-video-background video {
        object-fit: contain;
    }

    .site-video-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.08) 0%,
                rgba(0, 0, 0, 0.2) 58%,
                rgba(0, 0, 0, 0.56) 100%
            );
    }
}

/* Landscape tablets and small laptops: fill the viewport */
@media (min-width: 701px) and (max-width: 1100px) and (orientation: landscape) {
    .site-video-background video {
        object-fit: cover;
    }
}

/* Narrow tablets and large phones */
@media (max-width: 700px) {
    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2.7rem, 14vw, 4.5rem);
    }

    .hero-text {
        max-width: 100%;
        font-size: 1rem;
    }
}

/* Phones: show the full 16:9 video instead of cropping its edges */
@media (max-width: 620px) {
    .site-video-background {
        position: absolute;
        top: 76px;
        right: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        background: #080808;
    }

    .site-video-background video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        background: #080808;
    }

    .hero {
        min-height: 100svh;
        padding: calc(56.25vw + 116px) 20px 88px;
        align-items: flex-end;
    }

    .site-video-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.04) 0%,
                rgba(0, 0, 0, 0.14) 58%,
                rgba(0, 0, 0, 0.46) 100%
            );
    }

    .scroll-prompt {
        display: none;
    }
}

/* Very small phones */
@media (max-width: 420px) {
    .hero {
        padding-top: calc(56.25vw + 104px);
    }

    .hero-content h1 {
        font-size: clamp(2.45rem, 13vw, 3.8rem);
    }

    .hero-actions {
        gap: 12px;
    }
}

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

    .site-video-background video {
        display: none;
    }

    .site-video-background {
        background:
            radial-gradient(
                circle at 75% 35%,
                rgba(216, 255, 62, 0.12),
                transparent 34%
            ),
            linear-gradient(
                120deg,
                #080808 0%,
                #111111 55%,
                #080808 100%
            );
    }

    .design-card,
    .featured-control,
    .product-dot,
    .button,
    .site-nav {
        transition: none;
    }
}