/* =========================================================
   HUMANOID — HERO V3
   Editorial luxury desktop direction
   ========================================================= */


/* =========================
   ROOT PALETTE
   ========================= */

:root {

    --black: #0A0906;
    --off-black: #111009;
    --charcoal: #1C1A16;
    --warm-mid: #4A4540;
    --warm-light: #8A8278;
    --cream: #EDE8DF;
    --off-white: #F5F2EC;
    --white: #FDFAF6;
    --accent: #C8B89A;
    --accent-bright: #E2C99A;

    --header-height: 66px;

    --transition-slow: 600ms cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 250ms ease;

}


/* =========================
   GLOBAL RESET
   ========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "acumin-pro-condensed", sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* =========================================================
   GLOBAL SECTION WIDTH SYSTEM
   ========================================================= */

.full-width-section {

    width: 100% !important;

    max-width: none !important;

    margin: 0 !important;

    padding-left: 5vw !important;

    padding-right: 5vw !important;

    box-sizing: border-box;

}


/* =========================
   HEADER
   ========================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 66px;

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

    padding: 0 5vw;

    z-index: 1000;

    background: transparent;

    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);

    border-bottom:
        1px solid transparent;

    transition:
        background 600ms cubic-bezier(0.22, 1, 0.36, 1),
        backdrop-filter 600ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 600ms cubic-bezier(0.22, 1, 0.36, 1);

}


.header.scrolled {

    background:
        rgba(10, 9, 6, 0.72);

    backdrop-filter:
        blur(16px) saturate(90%);

    -webkit-backdrop-filter:
        blur(16px) saturate(90%);

    border-bottom:
        1px solid rgba(253, 250, 246, 0.04);

}


/* =========================
   LOGO
   ========================= */

.logo {

    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    text-decoration: none;

}

.logo-icon {
    height: 34px;
    width: auto;
 
}

.logo-text {

    font-weight: 100;
    font-size: 2rem;

    color: var(--white);

    letter-spacing: 0.08em;

    text-transform: lowercase;

}




/* =========================
   NAV
   ========================= */

.nav {
    display: flex;
    align-items: center;
    margin-left: auto;

}

.nav a {

    margin-left: 42px;

    text-decoration: none;

    color: rgba(253, 250, 246, 0.84);

    font-size: 0.92rem;
    font-weight: 200;

    letter-spacing: 0.12em;

    text-transform: lowercase;

    transition:
        opacity var(--transition-fast),
        color var(--transition-fast);

}

.nav a:hover {

    color: var(--accent-bright);

    opacity: 1;

}


/* =========================================================
   HERO
   ========================================================= */

.landing-hero {

    position: relative;

    width: 100%;
    height: 100vh;

    display: flex;

    background: var(--black);

    overflow: hidden;

}


/* =========================
   LEFT PANEL
   ========================= */

.hero-content {

    position: relative;
    align-items: flex-start;
    width: 44%;
    height: 100vh;

    background: var(--off-black);

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

    padding:
        calc(var(--header-height) + 6vh)
        5vw
        5vh
        5vw;

    z-index: 2;

}


/* subtle tonal depth */
.hero-content::after {

    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

    background: rgba(255,255,255,0.04);

}


/* =========================
   HERO TEXT
   ========================= */

.hero-copy {

    width: 100%;
    max-width: 760px;

}

.hero-copy h1 {

    font-size: clamp(4.6rem, 6vw, 7rem);

    font-weight: 100;

    line-height: 0.92;

    letter-spacing: 0.02em;

    text-transform: lowercase;

    color: var(--white);

    margin-bottom: 2.4rem;

}


.hero-copy .subtitle {

    font-size: 1.22rem;

    line-height: 1.45;

    font-weight: 200;

    letter-spacing: 0.03em;

    color: rgba(253, 250, 246, 0.76);

    max-width: 500px;

    margin-bottom: 1.2rem;

}


.hero-copy .secondary-line {

    font-size: 0.95rem;

    font-weight: 200;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    color: rgba(253, 250, 246, 0.42);

    margin-bottom: 3.2rem;

}


/* =========================
   CTA
   ========================= */

.cta-primary {

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

    width: fit-content;

    padding: 14px 28px;

    border: 1px solid rgba(253, 250, 246, 0.28);

    color: var(--white);

    text-decoration: none;

    font-size: 0.9rem;
    font-weight: 300;

    letter-spacing: 0.16em;

    text-transform: lowercase;

    transition:
        background var(--transition-slow),
        border-color var(--transition-slow),
        color var(--transition-slow),
        transform var(--transition-fast);

}

.cta-primary:hover {

    background: rgba(253, 250, 246, 0.08);

    border-color: rgba(253, 250, 246, 0.6);

    color: var(--off-white);

    transform: translateY(-1px);

}


/* =========================
   SEE HOW LINK
   ========================= */

.hero-link {

    margin-top: 5rem;

}

.hero-link a {

    display: inline-flex;
    align-items: center;
    gap: 18px;

    text-decoration: none;

    color: rgba(253, 250, 246, 0.5);

    font-size: 0.78rem;
    font-weight: 300;

    letter-spacing: 0.18em;

    text-transform: lowercase;

    transition: color var(--transition-fast);

}

.hero-link a::before {

    content: "";

    width: 42px;
    height: 1px;

    background: rgba(253, 250, 246, 0.22);

    transition:
        width var(--transition-slow),
        background var(--transition-fast);

}

.hero-link a:hover {

    color: var(--white);

}

.hero-link a:hover::before {

    width: 72px;

    background: rgba(253, 250, 246, 0.6);

}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {

    position: relative;

    width: 56%;
    height: 100vh;

    overflow: hidden;

    background: var(--black);

}


/* =========================
   SWIPE IMAGES
   ========================= */

.comparison-slider {

    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

}

.comparison-slider {
    cursor: ew-resize;
}

.comparison-slider.is-dragging {
    cursor: grabbing;
}

.slider-divider,
.slider-handle {
    cursor: ew-resize;
}

.comparison-slider img {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: auto;
    height: 100%;

    max-width: none;

    object-fit: contain;

    user-select: none;
    pointer-events: none;

}


/* generated editorial image */
.hero-after {

    z-index: 1;

}


/* 3D render layer */
.hero-before-wrapper {

    position: absolute;

    top: 0;
    left: 0;

    width: 20%;   /* starts mostly editorial */
    height: 100%;

    overflow: hidden;

    z-index: 2;

}

.hero-before {

    width: 100vw !important;
    max-width: none;

}


/* =========================
   DIVIDER
   ========================= */

.slider-divider {

    position: absolute;

    top: 0;
    left: 20%;

    width: 1px;
    height: 100%;

    background: rgba(253, 250, 246, 0.7);

    z-index: 4;

    cursor: ew-resize;

}

.slider-handle {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 44px;
    height: 44px;

    border-radius: 50%;

    border: 1px solid rgba(253, 250, 246, 0.42);

    background: rgba(10, 9, 6, 0.28);

    backdrop-filter: blur(8px);

}


/* =========================
   IMAGE LABELS
   ========================= */

.image-label {

    position: absolute;

    bottom: 34px;

    z-index: 5;

    font-size: 0.72rem;

    font-weight: 300;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: rgba(253, 250, 246, 0.56);

}

.label-before {
    left: 34px;
}

.label-after {
    right: 220px;
}


/* =========================================================
   FADE IN
   ========================================================= */

.fade-in {

    opacity: 0;

    transform: translateY(14px);

    animation: fadeUp 1.2s ease forwards;

}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.4s;
}


@keyframes fadeUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
   PROCESS SECTION
   ========================================================= */

.process-section {
    position: relative;
    background: var(--black);
    padding: 7rem 5vw 10rem 0vw;
    overflow: hidden;
}


/* =========================
   INTRO
   ========================= */



.process-intro {

    width: 100%;
   
    margin-bottom: 5rem;

}


.process-label {

    display: inline-flex;
    align-items: center;
    gap: 14px;

    font-size: 0.72rem;
    font-weight: 300;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    color: rgba(226, 201, 154, 0.82);

    margin-bottom: 2.2rem;

}


.process-label::after {

    content: "";

    width: 72px;
    height: 1px;

    background: rgba(226, 201, 154, 0.28);

}


.process-intro h2 {

    font-family: "acumin-pro-condensed", sans-serif;

    font-size: clamp(4.2rem, 5.6vw, 6.8rem);
    font-weight: 100;
    line-height: 0.92;
    letter-spacing: 0.02em;

    color: var(--off-white);

    max-width: 760px;

}


.process-intro .italic {

    font-style: italic;

    color: rgba(226, 201, 154, 0.88);

    font-weight: 100;

}


/* =========================================================
   PROCESS GRID
   ========================================================= */

.process-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(253, 250, 246, 0.08);

    border-left: 1px solid rgba(253, 250, 246, 0.08);

}


/* =========================
   PROCESS CARD
   ========================= */

.process-card {

    position: relative;

    min-height: 430px;

    padding:
        4rem
        3rem
        3rem
        3rem;

    border-right: 1px solid rgba(253, 250, 246, 0.08);

    border-bottom: 1px solid rgba(253, 250, 246, 0.08);

    background: rgba(255,255,255,0.008);

    transition:
        background 500ms ease,
        border-color 500ms ease;

}


.process-card:hover {

    background: rgba(255,255,255,0.016);

    border-color: rgba(253, 250, 246, 0.12);

}


/* =========================
   STEP NUMBER
   ========================= */

.process-number {

    font-size: 5.8rem;

    font-weight: 100;

    line-height: 1;

    letter-spacing: -0.04em;

    color: rgba(253, 250, 246, 0.06);

    margin-bottom: 3.2rem;

}


/* =========================
   CARD TITLE
   ========================= */

.process-card h3 {

    font-size: 2rem;

    font-weight: 200;

    line-height: 1.05;

    letter-spacing: -0.01em;

    color: var(--off-white);

    margin-bottom: 1.8rem;

    max-width: 340px;

}


/* =========================
   CARD COPY
   ========================= */

.process-card p {

    font-size: 1.05rem;

    font-weight: 200;

    line-height: 1.75;

    letter-spacing: 0.01em;

    color: rgba(253, 250, 246, 0.58);

    max-width: 420px;

}


/* =========================
   META TAG
   ========================= */

.process-meta {

    position: absolute;

    bottom: 3rem;
    left: 3rem;

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

    padding: 10px 14px;

    border: 1px solid rgba(226, 201, 154, 0.16);

    font-size: 0.68rem;

    font-weight: 300;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: rgba(226, 201, 154, 0.72);

    background: rgba(226, 201, 154, 0.02);

}


/* =========================================================
   LARGE DESKTOP REFINEMENT
   ========================================================= */

@media (min-width: 1800px) {

    .process-section {

        padding-left: 6vw;
        padding-right: 6vw;

    }

}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1280px) {

    .process-intro h2 {

        font-size: 5rem;

    }

    .process-card {

        padding: 3rem 2.4rem 3rem 2.4rem;

    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

    .process-grid {

        grid-template-columns: 1fr;

    }

    .process-card {

        min-height: auto;

        padding-bottom: 7rem;

    }

    .process-intro {

        margin-bottom: 5rem;

    }

    .process-intro h2 {

        font-size: 4rem;

    }

}

/* =========================================================
   ROSTER SECTION
   ========================================================= */

.roster-section {

    position: relative;

    width: 100%;

    padding:
        8rem
        5vw
        10rem
        5vw;

    background: var(--black);

    overflow: hidden;

}


/* =========================
   HEADER
   ========================= */

.roster-header {

    margin-bottom: 4rem;

}


.roster-header h2 {

    font-family: "acumin-pro-condensed", sans-serif;

    font-size: clamp(2.8rem, 4vw, 4.8rem);

    font-weight: 100;

    line-height: 1;

    letter-spacing: 0.04em;

    text-transform: lowercase;

    color: var(--off-white);

}


.roster-header h2 span {

    color: rgba(226, 201, 154, 0.78);

    font-weight: 100;

}


/* =========================================================
   GRID
   ========================================================= */

.roster-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 2px;

    background: rgba(253, 250, 246, 0.04);

}


/* =========================
   MODEL ITEM
   ========================= */

.roster-item {

    position: relative;

    overflow: hidden;

    background: var(--off-black);

    aspect-ratio: 2 / 3;

}


.roster-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    filter:
        saturate(92%)
        contrast(102%);

    transition:
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 500ms ease,
        filter 500ms ease;

}


/* =========================
   SUBTLE HOVER
   ========================= */

.roster-item:hover img {

    transform: scale(1.015);

    filter:
        saturate(100%)
        contrast(104%)
        brightness(1.02);

}


/* =========================
   MODEL NAME
   ========================= */

.model-name {

    position: absolute;

    left: 16px;
    bottom: 14px;

    z-index: 2;

    font-size: 0.68rem;

    font-weight: 300;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: rgba(253, 250, 246, 0.52);

    transition:
        color 300ms ease,
        opacity 300ms ease;

}


.roster-item:hover .model-name {

    color: rgba(253, 250, 246, 0.88);

}


/* =========================
   FOOTER
   ========================= */

.roster-footer {

    margin-top: 2.8rem;

}


.roster-footer p {

    font-size: 0.82rem;

    font-weight: 300;

    letter-spacing: 0.08em;

    line-height: 1.6;

    color: rgba(253, 250, 246, 0.46);

    text-transform: lowercase;

}


.roster-footer a {

    color: rgba(226, 201, 154, 0.82);

    text-decoration: none;

    border-bottom: 1px solid rgba(226, 201, 154, 0.18);

    padding-bottom: 2px;

    transition:
        color 300ms ease,
        border-color 300ms ease;

}


.roster-footer a:hover {

    color: var(--accent-bright);

    border-color: rgba(226, 201, 154, 0.62);

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1440px) {

    .roster-grid {

        grid-template-columns: repeat(5, 1fr);

    }

}


@media (max-width: 1180px) {

    .roster-grid {

        grid-template-columns: repeat(4, 1fr);

    }

}


@media (max-width: 820px) {

    .roster-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}


@media (max-width: 560px) {

    .roster-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

/* =========================================================
   STUDIO BACKGROUNDS
   ========================================================= */

.backgrounds-section {

    position: relative;

    width: 100%;

    padding:
        7rem
        5vw
        9rem
        5vw;

    background: var(--black);

    overflow: hidden;

}


/* =========================
   HEADER
   ========================= */

.backgrounds-header {

    margin-bottom: 3rem;

}


.backgrounds-header h2 {

    font-family: "acumin-pro-condensed", sans-serif;

    font-size: clamp(2.4rem, 3vw, 4rem);

    font-weight: 100;

    line-height: 1;

    letter-spacing: 0.04em;

    text-transform: lowercase;

    color: var(--off-white);

}


.backgrounds-header h2 span {

    color: rgba(226, 201, 154, 0.78);

    font-weight: 100;

}


/* =========================================================
   SWATCH STRIP
   ========================================================= */

/* =========================================================
   BACKGROUND SWATCHES
   ========================================================= */

.backgrounds-strip {

    display: flex;

    gap: 14px;

    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 8px;

    scrollbar-width: none;

}

.backgrounds-strip::-webkit-scrollbar {

    display: none;

}


/* =========================
   ITEM
   ========================= */

.background-item {

    flex: 0 0 auto;

}


/* =========================
   BUTTON
   ========================= */

.btn-choice-bg {

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

    background: transparent;

    border: none;

    padding: 0;

    cursor: default;

}


/* =========================
   SWATCH
   ========================= */

.swatch {

    width: 120px;
    height: 50px;

    display: block;

    border:
        1px solid rgba(253, 250, 246, 0.08);

    transition:
        transform 400ms ease,
        border-color 400ms ease,
        opacity 400ms ease;

}


/* =========================
   LABEL
   ========================= */

.swatch-label {

    font-size: 0.62rem;

    font-weight: 300;

    letter-spacing: 0.18em;

    line-height: 1;

    text-transform: uppercase;

    color: rgba(253, 250, 246, 0.46);

    transition:
        color 300ms ease,
        opacity 300ms ease;

}


/* =========================
   HOVER
   ========================= */

.background-item:hover .swatch {

    transform: translateY(-2px);

    border-color:
        rgba(226, 201, 154, 0.34);

}


.background-item:hover .swatch-label {

    color: rgba(253, 250, 246, 0.82);

}


/* =========================
   SWATCH NAME
   ========================= */

.bg-cell-name {

    margin-top: 12px;

    font-size: 0.62rem;

    font-weight: 300;

    letter-spacing: 0.16em;

    line-height: 1.4;

    text-transform: uppercase;

    color: rgba(253, 250, 246, 0.48);

    transition:
        color 300ms ease,
        opacity 300ms ease;

}


.background-item:hover .bg-cell-name {

    color: rgba(253, 250, 246, 0.82);

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .backgrounds-section {

        padding:
            5rem
            5vw
            7rem
            5vw;

    }

    .background-item {

        width: 108px;

    }

    .background-item img {

        width: 108px;
        height: 46px;

    }

}


/* =========================================================
   DIFFERENCE SECTION
   ========================================================= */

.difference-section {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;

    display: grid;
    grid-template-columns: 40% 1fr;
    column-gap: 4vw;

    padding: 10rem 5vw 12rem 5vw !important;
}




/* subtle warm atmosphere */
.difference-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(226, 201, 154, 0.04),
            transparent 42%
        );

    pointer-events: none;

}


/* =========================================================
   LEFT COLUMN
   ========================================================= */

.difference-intro {

    position: sticky;

    top: 120px;

    align-self: start;

}


.difference-label {

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

    gap: 14px;

    margin-bottom: 2rem;

    font-size: 0.72rem;

    font-weight: 300;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    color: rgba(226, 201, 154, 0.82);

}


.difference-label::after {

    content: "";

    width: 72px;
    height: 1px;

    background:
        rgba(226, 201, 154, 0.24);

}


/* =========================
   MAIN HEADING
   ========================= */

.difference-intro h2 {

    font-family:
        "acumin-pro-condensed",
        sans-serif;

    font-size:
        clamp(4.4rem, 6vw, 7rem);

    font-weight: 100;

    line-height: 0.92;

    letter-spacing: 0.02em;

    color: var(--off-white);

    max-width: 760px;

}


.difference-intro .italic {

    font-style: italic;

    color:
        rgba(226, 201, 154, 0.92);

    font-weight: 100;

}


/* =========================================================
   RIGHT COLUMN
   ========================================================= */

.difference-points {

    border-top:
        1px solid rgba(253, 250, 246, 0.08);

}


/* =========================
   ITEM
   ========================= */

.difference-item {

    display: grid;

    grid-template-columns:
        64px 1fr;

    gap: 2rem;

    padding:
        3.5rem 0;

    border-bottom:
        1px solid rgba(253, 250, 246, 0.08);

}


/* =========================
   NUMBER
   ========================= */

.difference-number {

    padding-top: 6px;

    font-size: 0.72rem;

    font-weight: 300;

    letter-spacing: 0.18em;

    line-height: 1;

    color:
        rgba(226, 201, 154, 0.78);

}


/* =========================
   COPY
   ========================= */

.difference-copy h3 {

    font-size: 2rem;

    font-weight: 200;

    line-height: 1.08;

    letter-spacing: 0.01em;

    color: var(--off-white);

    margin-bottom: 1.4rem;

    max-width: 760px;

}


.difference-copy p {

    font-size: 1.06rem;

    font-weight: 200;

    line-height: 1.8;

    letter-spacing: 0.01em;

    color:
        rgba(253, 250, 246, 0.58);

    max-width: 760px;

}


/* =========================================================
   HOVER REFINEMENT
   ========================================================= */

.difference-item {

    transition:
        background 400ms ease,
        border-color 400ms ease;

}


.difference-item:hover {

    background:
        rgba(255,255,255,0.01);

}


.difference-item:hover h3 {

    color:
        rgba(253, 250, 246, 1);

}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1800px) {

    .difference-section {

        padding-left: 6vw;
        padding-right: 6vw;

    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .difference-section {

        grid-template-columns: 1fr;

        gap: 5rem;

    }

    .difference-intro {

        position: relative;

        top: auto;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .difference-section {

        padding:
            7rem
            5vw
            8rem
            5vw;

    }

    .difference-intro h2 {

        font-size:
            clamp(3.4rem, 12vw, 5rem);

    }

    .difference-item {

        grid-template-columns: 1fr;

        gap: 1rem;

        padding:
            2.6rem 0;

    }

    .difference-copy h3 {

        font-size: 1.6rem;

    }

    .difference-copy p {

        font-size: 1rem;

        line-height: 1.7;

    }

}

/* =========================================================
   EARLY ACCESS SECTION
   ========================================================= */

.early-access-section {

    position: relative;

    width: 100%;

    padding:
        10rem
        5vw
        12rem
        5vw;

    background:
        linear-gradient(
            180deg,
            #0A0906 0%,
            #111009 100%
        );

    overflow: hidden;

}


/* subtle warmth */
.early-access-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center top,
            rgba(226, 201, 154, 0.05),
            transparent 46%
        );

    pointer-events: none;

}


/* =========================================================
   INNER WRAP
   ========================================================= */

.early-access-inner {

    position: relative;

    max-width: 980px;

    margin: 0 auto;

    text-align: center;

    z-index: 2;

}


/* =========================================================
   LABEL
   ========================================================= */

.early-access-label {

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

    gap: 14px;

    margin-bottom: 2.8rem;

    font-size: 0.72rem;

    font-weight: 300;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    color:
        rgba(226, 201, 154, 0.82);

}


.early-access-label::after {

    content: "";

    width: 72px;
    height: 1px;

    background:
        rgba(226, 201, 154, 0.24);

}


/* =========================================================
   HEADING
   ========================================================= */

.early-access-inner h2 {

    font-family:
        "acumin-pro-condensed",
        sans-serif;

    font-size:
        clamp(4.8rem, 8vw, 8.8rem);

    font-weight: 100;

    line-height: 0.9;

    letter-spacing: 0.02em;

    color: var(--off-white);

    margin-bottom: 2.6rem;

}


.early-access-inner h2 span {

    display: inline-block;

    font-style: italic;

    color:
        rgba(226, 201, 154, 0.92);

    font-weight: 100;

}


/* =========================================================
   SUBTITLE
   ========================================================= */

.early-access-subtitle {

    font-size: 0.88rem;

    font-weight: 300;

    letter-spacing: 0.24em;

    line-height: 1.8;

    text-transform: uppercase;

    color:
        rgba(253, 250, 246, 0.28);

    margin-bottom: 4rem;

}


/* =========================================================
   FORM
   ========================================================= */

.early-access-form {

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

    max-width: 760px;

    margin: 0 auto;

    border:
        1px solid rgba(253, 250, 246, 0.08);

    background:
        rgba(255,255,255,0.01);

    overflow: hidden;

}


/* =========================
   INPUT
   ========================= */

.early-access-form input {

    flex: 1;

    min-height: 72px;

    padding:
        0
        2rem;

    border: none;

    background: transparent;

    font-family:
        "acumin-pro-condensed",
        sans-serif;

    font-size: 1rem;

    font-weight: 200;

    letter-spacing: 0.08em;

    color: var(--off-white);

    outline: none;

}


.early-access-form input::placeholder {

    color:
        rgba(253, 250, 246, 0.26);

}


/* =========================
   BUTTON
   ========================= */

.early-access-form button {

    min-width: 240px;

    border: none;

    background:
        rgba(226, 201, 154, 0.92);

    color: var(--black);

    font-family:
        "acumin-pro-condensed",
        sans-serif;

    font-size: 0.78rem;

    font-weight: 400;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 400ms ease,
        color 400ms ease,
        transform 300ms ease;

}


.early-access-form button:hover {

    background:
        rgba(240, 220, 184, 1);

}


/* =========================================================
   FOOTNOTE
   ========================================================= */

.early-access-note {

    margin-top: 2rem;

    font-size: 0.68rem;

    font-weight: 300;

    letter-spacing: 0.18em;

    line-height: 1.8;

    text-transform: uppercase;

    color:
        rgba(253, 250, 246, 0.22);

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .early-access-section {

        padding:
            7rem
            5vw
            8rem
            5vw;

    }

    .early-access-inner h2 {

        font-size:
            clamp(3.8rem, 16vw, 6rem);

    }

    .early-access-subtitle {

        font-size: 0.78rem;

        letter-spacing: 0.16em;

    }

    .early-access-form {

        flex-direction: column;

    }

    .early-access-form input {

        min-height: 68px;

    }

    .early-access-form button {

        width: 100%;

        min-height: 68px;

    }

}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    position: relative;

    width: 100%;

    padding:
        2rem
        5vw;

    background: transparent;

    border-top:
        1px solid rgba(253, 250, 246, 0.06);

}


.footer-inner {

    display: flex;

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

    gap: 2rem;

}


/* =========================
   LEFT
   ========================= */

.footer-left {

    font-size: 0.72rem;

    font-weight: 300;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color:
        rgba(253, 250, 246, 0.28);

}


/* =========================
   RIGHT
   ========================= */

.footer-right {

    display: flex;
    align-items: center;

    gap: 2rem;

}


.footer-right a {

    text-decoration: none;

    font-size: 0.72rem;

    font-weight: 300;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    color:
        rgba(253, 250, 246, 0.28);

    transition:
        color 300ms ease,
        opacity 300ms ease;

}


.footer-right a:hover {

    color:
        rgba(253, 250, 246, 0.72);

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .footer-inner {

        flex-direction: column;

        align-items: flex-start;

        gap: 1.2rem;

    }

    .footer-right {

        gap: 1.4rem;

        flex-wrap: wrap;

    }

}

/* =========================================================
   ABOUT + WHY SECTIONS
   ========================================================= */

.about-section,
.why-section {
    position: relative;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 10rem 5vw 11rem 5vw !important;
    background: var(--black);
    color: var(--off-white);
    overflow: hidden;
}

.why-section {
    background:
        linear-gradient(
            180deg,
            #0A0906 0%,
            #111009 100%
        );
}

/* subtle warmth */
.about-section::before,
.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(226, 201, 154, 0.035),
            transparent 42%
        );
    pointer-events: none;
}


/* =========================
   GRIDS
   ========================= */

.about-grid,
.why-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 42% 1fr;
    column-gap: 6vw;
    align-items: start;
}


/* =========================
   LEFT INTRO
   ========================= */

.about-label,
.why-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 2.2rem;

    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.24em;
    text-transform: uppercase;

    color: rgba(226, 201, 154, 0.82);
}

.about-label::after,
.why-label::after {
    content: "";
    width: 72px;
    height: 1px;
    background: rgba(226, 201, 154, 0.24);
}

.about-intro,
.why-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.about-intro h2,
.why-intro h2 {
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: clamp(4.2rem, 5.8vw, 7rem);
    font-weight: 100;
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--off-white);
    max-width: 760px;
}

.about-intro .italic,
.why-intro .italic {
    font-style: italic;
    font-weight: 100;
    color: rgba(226, 201, 154, 0.92);
}


/* =========================
   BODY COPY
   ========================= */

.about-copy,
.why-copy {
    max-width: 820px;
}

.about-copy p,
.why-item p {
    font-size: 1.14rem;
    font-weight: 200;
    line-height: 1.85;
    letter-spacing: 0.01em;
    color: rgba(253, 250, 246, 0.62);
    margin-bottom: 2rem;
}

.about-copy strong {
    font-weight: 300;
    color: rgba(253, 250, 246, 0.88);
}

.about-copy a {
    color: rgba(226, 201, 154, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(226, 201, 154, 0.24);
}

.about-closing {
    margin-top: 3rem;
    font-size: 1.4rem !important;
    line-height: 1.35 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    color: rgba(226, 201, 154, 0.88) !important;
}


/* =========================
   WHY ITEMS / ELEGANT DIVIDERS
   ========================= */

.why-copy {
    border-top: 1px solid rgba(253, 250, 246, 0.08);
}

.why-item {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(253, 250, 246, 0.08);
}

.why-item h3 {
    font-size: 2rem;
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--off-white);
    margin-bottom: 1.2rem;
}

.why-item p {
    max-width: 720px;
    margin-bottom: 0;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {
    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        row-gap: 5rem;
    }

    .about-intro,
    .why-intro {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .about-section,
    .why-section {
        padding: 7rem 5vw 8rem 5vw !important;
    }

    .about-intro h2,
    .why-intro h2 {
        font-size: clamp(3.4rem, 12vw, 5rem);
    }

    .about-copy p,
    .why-item p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .why-item h3 {
        font-size: 1.55rem;
    }

    .about-closing {
        font-size: 1.05rem !important;
    }
}

/* =========================================================
   EDITORIAL STUDIO
   ========================================================= */

.editorial-section {
    position: relative;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 10rem 5vw 12rem 5vw !important;

    display: grid;
    grid-template-columns: 42% 1fr;
    column-gap: 6vw;
    align-items: stretch;

    background: var(--black);
    color: var(--off-white);
    overflow: hidden;
}


/* LEFT COPY */

.editorial-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.editorial-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 2.2rem;

    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.24em;
    text-transform: uppercase;

    color: rgba(226, 201, 154, 0.82);
}

.editorial-label::after {
    content: "";
    width: 72px;
    height: 1px;
    background: rgba(226, 201, 154, 0.24);
}

.editorial-copy h2 {
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: clamp(4.2rem, 5.8vw, 7rem);
    font-weight: 100;
    line-height: 0.92;
    letter-spacing: 0.02em;

    color: var(--off-white);

    margin-bottom: 2.6rem;
}

.editorial-copy h2 span {
    font-style: italic;
    font-weight: 100;
    color: rgba(226, 201, 154, 0.92);
}

.editorial-copy p {
    font-size: 1.1rem;
    font-weight: 200;
    line-height: 1.8;
    letter-spacing: 0.01em;

    color: rgba(253, 250, 246, 0.6);

    margin-bottom: 1.8rem;
}

.editorial-intro {
    font-size: 1.35rem !important;
    line-height: 1.5 !important;
    color: rgba(253, 250, 246, 0.82) !important;
}

.editorial-statement {
    margin-top: 3rem;
    margin-bottom: 4rem !important;

    font-size: 1.35rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;

    color: rgba(226, 201, 154, 0.88) !important;
}


/* PROCESS */

.editorial-process {
    margin-top: 4.5rem;
    margin-bottom: 3rem;

    border-top: 1px solid rgba(253, 250, 246, 0.08);
}

.editorial-process h3 {
    padding: 2rem 0 1rem 0;

    font-size: 1.2rem;
    font-weight: 200;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(253, 250, 246, 0.48);
}

.editorial-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.6rem;

    padding: 1.8rem 0;

    border-bottom: 1px solid rgba(253, 250, 246, 0.08);
}

.editorial-step > span {
    padding-top: 4px;

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

    color: rgba(226, 201, 154, 0.78);
}

.editorial-step h4 {
    font-size: 1.55rem;
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: 0.02em;

    color: var(--off-white);

    margin-bottom: 0.7rem;
}

.editorial-step p {
    margin: 0;

    font-size: 1rem;
    line-height: 1.65;

    color: rgba(253, 250, 246, 0.52);
}


/* CTA */

.editorial-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 30px;

    border: 1px solid rgba(253, 250, 246, 0.24);

    color: var(--off-white);
    text-decoration: none;

    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: lowercase;

    transition:
        background 400ms ease,
        border-color 400ms ease,
        color 400ms ease,
        transform 300ms ease;
}

.editorial-cta:hover {
    background: rgba(253, 250, 246, 0.07);
    border-color: rgba(226, 201, 154, 0.5);
    color: var(--accent-bright);
    transform: translateY(-1px);
}


/* RIGHT VIDEO PANEL */

.editorial-video {

    position: sticky;

    top: 90px;

    width: 100%;

    max-width: 760px;

    height: 88vh;

    max-height: 1100px;

    margin-left: auto;

    overflow: hidden;

    background: var(--off-black);

    border:1px solid rgba(253, 250, 246, 0.08);

    box-shadow:0 40px 120px rgba(0,0,0,0.42);
        
}


.editorial-video::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10, 9, 6, 0.08),
            rgba(10, 9, 6, 0.22)
        );

    pointer-events: none;
}

.editorial-video video {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    aspect-ratio: 3 / 4;
}


/* RESPONSIVE */

@media (max-width: 1100px) {
    .editorial-section {
        grid-template-columns: 1fr;
        row-gap: 5rem;
    }

    .editorial-video {
        position: relative;
        top: auto;

        height: 70vh;
        min-height: 520px;

        order: -1;
    }
}

@media (max-width: 768px) {
    .editorial-section {
        padding: 7rem 5vw 8rem 5vw !important;
    }

    .editorial-copy h2 {
        font-size: clamp(3.4rem, 12vw, 5rem);
    }

    .editorial-intro {
        font-size: 1.12rem !important;
    }

    .editorial-copy p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .editorial-statement {
        font-size: 1.05rem !important;
    }

    .editorial-video {
        height: 62vh;
        min-height: 420px;
    }

    .editorial-step {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .editorial-step h4 {
        font-size: 1.35rem;
    }
}

/* =========================================================
   EXAMPLES SECTION
   ========================================================= */

.examples-section {

    position: relative;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;

    padding:
        10rem
        5vw
        12rem
        5vw !important;

    background:
        linear-gradient(
            180deg,
            #0A0906 0%,
            #111009 100%
        );

    overflow: hidden;

}


/* subtle warmth */

.examples-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(226, 201, 154, 0.03),
            transparent 42%
        );

    pointer-events: none;

}


/* =========================================================
   HEADER
   ========================================================= */

.examples-header {

    position: relative;

    z-index: 2;

    margin-bottom: 6rem;

}


.examples-label {

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

    gap: 14px;

    margin-bottom: 2rem;

    font-size: 0.72rem;
    font-weight: 300;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    color:
        rgba(226, 201, 154, 0.82);

}


.examples-label::after {

    content: "";

    width: 72px;
    height: 1px;

    background:
        rgba(226, 201, 154, 0.24);

}


.examples-header h2 {

    font-family:
        "acumin-pro-condensed",
        sans-serif;

    font-size:
        clamp(4.4rem, 6vw, 7rem);

    font-weight: 100;

    line-height: 0.92;

    letter-spacing: 0.02em;

    color: var(--off-white);

}


.examples-header h2 span {

    font-style: italic;

    font-weight: 100;

    color:
        rgba(226, 201, 154, 0.92);

}


/* =========================================================
   GRID
   ========================================================= */

.examples-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 3vw;

}


/* =========================================================
   EXAMPLE CARD
   ========================================================= */

.example-case {

    position: relative;

}


/* =========================================================
   SLIDER
   ========================================================= */

.example-slider {

    position: relative;

    width: 100%;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background: var(--off-black);

    border:
        1px solid rgba(253, 250, 246, 0.08);

    cursor: ew-resize;

    user-select: none;

}

.example-slider.is-dragging {
    cursor: grabbing;
}


/* AFTER IMAGE */

.example-after,
.example-before {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;
    background: var(--off-black);

    display: block;

}


/* BEFORE WRAP */

.example-before-wrap {

    position: absolute;

    inset: 0;

    width: 50%;

    overflow: hidden;

}


/* =========================================================
   DIVIDER
   ========================================================= */

.example-divider {

    position: absolute;

    top: 0;
    left: 50%;

    width: 1px;
    height: 100%;

    background:
        rgba(253, 250, 246, 0.72);

    z-index: 5;

    transform: translateX(-50%);

}


/* HANDLE */

.example-handle {

    position: absolute;

    top: 50%;
    left: 50%;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background:
        rgba(10, 9, 6, 0.78);

    border:
        1px solid rgba(253, 250, 246, 0.24);

    backdrop-filter:
        blur(10px);

    transform:
        translate(-50%, -50%);

}


/* =========================================================
   CAPTION
   ========================================================= */

.example-caption {

    display: flex;

    align-items: center;

    gap: 1rem;

    margin-top: 1.4rem;

}


.example-caption span {

    font-size: 0.72rem;

    font-weight: 300;

    letter-spacing: 0.18em;

    color:
        rgba(226, 201, 154, 0.82);

}


.example-caption p {

    font-size: 0.78rem;

    font-weight: 300;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    color:
        rgba(253, 250, 246, 0.44);

}


/* =========================================================
   HOVER
   ========================================================= */

.example-case:hover .example-slider {

    border-color:
        rgba(226, 201, 154, 0.18);

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .examples-grid {

        grid-template-columns: 1fr;

        gap: 5rem;

    }

}


@media (max-width: 768px) {

    .examples-section {

        padding:
            7rem
            5vw
            8rem
            5vw !important;

    }

    .examples-header h2 {

        font-size:
            clamp(3.4rem, 12vw, 5rem);

    }

    .example-caption {

        flex-direction: column;

        align-items: flex-start;

        gap: 0.6rem;

    }

}

/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {

    position: relative;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;

    padding:
        10rem
        5vw
        12rem
        5vw !important;

    background:
        linear-gradient(
            180deg,
            #111009 0%,
            #0A0906 100%
        );

    overflow: hidden;

}


/* subtle atmosphere */

.faq-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(226, 201, 154, 0.035),
            transparent 42%
        );

    pointer-events: none;

}


/* =========================================================
   HEADER
   ========================================================= */

.faq-header {

    position: relative;

    z-index: 2;

    margin-bottom: 5rem;

}


.faq-label {

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

    gap: 14px;

    margin-bottom: 2rem;

    font-size: 0.72rem;
    font-weight: 300;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    color:
        rgba(226, 201, 154, 0.82);

}


.faq-label::after {

    content: "";

    width: 72px;
    height: 1px;

    background:
        rgba(226, 201, 154, 0.24);

}


.faq-header h2 {

    font-family:
        "acumin-pro-condensed",
        sans-serif;

    font-size:
        clamp(4.2rem, 5.8vw, 7rem);

    font-weight: 100;

    line-height: 0.92;

    letter-spacing: 0.02em;

    color: var(--off-white);

}


/* =========================================================
   FAQ LIST
   ========================================================= */

.faq-list {

    position: relative;

    z-index: 2;

    border-top:
        1px solid rgba(253, 250, 246, 0.08);

}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.faq-item {

    border-bottom:
        1px solid rgba(253, 250, 246, 0.08);

}


/* remove browser marker */

.faq-item summary::-webkit-details-marker {

    display: none;

}

.faq-item summary::marker {

    display: none;

}


/* =========================================================
   SUMMARY
   ========================================================= */

.faq-item summary {

    position: relative;

    display: flex;

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

    gap: 2rem;

    list-style: none;

    cursor: pointer;

    padding:
        2.6rem
        0;

    font-size:
        clamp(1.5rem, 2vw, 2.2rem);

    font-weight: 200;

    line-height: 1.1;

    letter-spacing: 0.01em;

    color: var(--off-white);

    transition:
        color 300ms ease,
        opacity 300ms ease;

}


/* plus icon */

.faq-item summary::after {

    content: "+";

    position: relative;

    top: -2px;

    font-size: 1.4rem;

    font-weight: 100;

    color:
        rgba(226, 201, 154, 0.82);

    transition:
        transform 400ms ease,
        opacity 300ms ease;

}


/* open state */

.faq-item[open] summary::after {

    transform: rotate(45deg);

}


/* hover */

.faq-item summary:hover {

    color:
        rgba(253, 250, 246, 0.82);

}


/* =========================================================
   CONTENT
   ========================================================= */

.faq-content {

    max-width: 900px;

    padding:
        0
        0
        2.8rem
        0;

}


.faq-content p {

    font-size: 1.08rem;

    font-weight: 200;

    line-height: 1.85;

    letter-spacing: 0.01em;

    color:
        rgba(253, 250, 246, 0.58);

    margin-bottom: 1.6rem;

}


.faq-content p:last-child {

    margin-bottom: 0;

}


/* =========================================================
   OPEN ANIMATION FEEL
   ========================================================= */

.faq-item[open] .faq-content {

    animation:
        faqFade 320ms ease;

}


@keyframes faqFade {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .faq-section {

        padding:
            7rem
            5vw
            8rem
            5vw !important;

    }

    .faq-header h2 {

        font-size:
            clamp(3.4rem, 12vw, 5rem);

    }

    .faq-item summary {

        padding:
            2rem
            0;

        font-size: 1.35rem;

    }

    .faq-content p {

        font-size: 1rem;

        line-height: 1.75;

    }

}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {

    position: relative;

    width: 100% !important;
    max-width: none !important;

    min-height: 100vh;

    padding:
        12rem
        5vw
        10rem
        5vw !important;

    background:
        linear-gradient(
            180deg,
            #0A0906 0%,
            #111009 100%
        );

    overflow: hidden;

}


/* subtle warmth */

.contact-page::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(226, 201, 154, 0.035),
            transparent 42%
        );

    pointer-events: none;

}


/* =========================================================
   CONTAINER
   ========================================================= */

.contact-container {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 760px;

}


/* =========================================================
   LABEL
   ========================================================= */

.contact-label {

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

    gap: 14px;

    margin-bottom: 2rem;

    font-size: 0.72rem;
    font-weight: 300;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    color:
        rgba(226, 201, 154, 0.82);

}


.contact-label::after {

    content: "";

    width: 72px;
    height: 1px;

    background:
        rgba(226, 201, 154, 0.24);

}


/* =========================================================
   HEADING
   ========================================================= */

.contact-container h2 {

    font-family:
        "acumin-pro-condensed",
        sans-serif;

    font-size:
        clamp(4.2rem, 6vw, 7rem);

    font-weight: 100;

    line-height: 0.92;

    letter-spacing: 0.02em;

    color: var(--off-white);

    margin-bottom: 2rem;

}


/* =========================================================
   INTRO
   ========================================================= */

.contact-intro {

    max-width: 620px;

    margin-bottom: 4rem;

    font-size: 1.08rem;

    font-weight: 200;

    line-height: 1.8;

    letter-spacing: 0.01em;

    color:
        rgba(253, 250, 246, 0.58);

}


/* =========================================================
   FORM
   ========================================================= */

.contact-form {

    display: flex;
    flex-direction: column;

    gap: 1.2rem;

}


/* =========================================================
   INPUTS
   ========================================================= */

.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;

    border:
        1px solid rgba(253, 250, 246, 0.08);

    background:
        rgba(255,255,255,0.015);

    padding:
        1.25rem
        1.4rem;

    font-family:
        "acumin-pro-condensed",
        sans-serif;

    font-size: 1rem;

    font-weight: 200;

    letter-spacing: 0.04em;

    color: var(--off-white);

    outline: none;

    transition:
        border-color 300ms ease,
        background 300ms ease;

}

.contact-form select option {
    background: #111009;
    color: #FDFAF6;
}


/* textarea */

.contact-form textarea {

    min-height: 220px;

    resize: vertical;

}


/* placeholder */

.contact-form input::placeholder,
.contact-form textarea::placeholder {

    color:
        rgba(253, 250, 246, 0.26);

}


/* select */

.contact-form select {

    appearance: none;

    cursor: pointer;

    color:
        rgba(253, 250, 246, 0.72);

}


/* focus */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {

    border-color:
        rgba(226, 201, 154, 0.28);

    background:
        rgba(255,255,255,0.03);

}


/* =========================================================
   BUTTON
   ========================================================= */

.btn-submit {

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

    width: fit-content;

    min-width: 220px;

    margin-top: 1rem;

    padding:
        16px
        34px;

    border: none;

    background:
        rgba(226, 201, 154, 0.92);

    color: var(--black);

    font-family:
        "acumin-pro-condensed",
        sans-serif;

    font-size: 0.78rem;

    font-weight: 400;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 400ms ease,
        transform 300ms ease;

}


.btn-submit:hover {

    background:
        rgba(240, 220, 184, 1);

    transform:
        translateY(-1px);

}


/* =========================================================
   NOTE
   ========================================================= */

.form-note {

    margin-top: 2rem;

    font-size: 0.72rem;

    font-weight: 300;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    color:
        rgba(253, 250, 246, 0.28);

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .contact-page {

        padding:
            8rem
            5vw
            7rem
            5vw !important;

    }

    .contact-container h2 {

        font-size:
            clamp(3.4rem, 12vw, 5rem);

    }

    .contact-intro {

        font-size: 1rem;

        line-height: 1.7;

    }

    .contact-form textarea {

        min-height: 180px;

    }

    .btn-submit {

        width: 100%;

    }

}

/* =========================================================
   AUTH SUCCESS / VERIFY STATES
   ========================================================= */

.auth-success {

    text-align: left;

}


.auth-label {

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

    gap: 14px;

    margin-bottom: 2rem;

    font-size: 0.72rem;
    font-weight: 300;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    color:
        rgba(226, 201, 154, 0.82);

}


.auth-label::after {

    content: "";

    width: 72px;
    height: 1px;

    background:
        rgba(226, 201, 154, 0.24);

}


.auth-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    margin-top: 1rem;

}

.auth-button,
.auth-button:visited,
.auth-button:active {

    color: #0A0906 !important;

    text-decoration: none !important;

}

.auth-button:hover {

    color: #0A0906 !important;

}

/* =========================================================
   AUTH / ACCOUNT PAGES
   ========================================================= */

.auth-page,
.legal-page {
    min-height: 100vh;
    padding: 11rem 5vw 8rem 5vw;
    background:
        radial-gradient(circle at top left, rgba(226,201,154,0.035), transparent 42%),
        linear-gradient(180deg, #0A0906 0%, #111009 100%);
    color: var(--off-white);
}

.auth-container {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid rgba(253,250,246,0.08);
    background: rgba(255,255,255,0.012);
}

.auth-container h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 100;
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--off-white);
    margin-bottom: 2.6rem;
    text-transform: lowercase;
}

.auth-message {
    font-size: 1.05rem;
    font-weight: 200;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: rgba(253,250,246,0.62);
    margin-bottom: 1.6rem;
}

.auth-message-muted {
    color: rgba(253,250,246,0.42);
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-group label,
.auth-container label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253,250,246,0.46);
}

.form-group input,
.auth-container input[type="email"],
.auth-container input[type="password"],
.auth-container input[type="text"] {
    width: 100%;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(253,250,246,0.08);
    background: rgba(255,255,255,0.018);
    color: var(--off-white);
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 0.04em;
    outline: none;
}

.form-group input:focus,
.auth-container input:focus {
    border-color: rgba(226,201,154,0.32);
    background: rgba(255,255,255,0.035);
}

.auth-container a {
    color: rgba(226,201,154,0.88);
    text-decoration: none;
    border-bottom: 1px solid rgba(226,201,154,0.22);
}

.auth-container a:hover {
    color: var(--accent-bright);
    border-color: rgba(226,201,154,0.6);
}

.btn-primary,
.btn-google {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(253,250,246,0.12);
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.btn-primary {
    margin-top: 1rem;
    background: rgba(226,201,154,0.92);
    color: var(--black);
    border-color: transparent;
}

.btn-primary:hover {
    background: rgba(240,220,184,1);
    transform: translateY(-1px);
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: transparent;
    color: var(--off-white);
}

.btn-google:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(253,250,246,0.24);
}

.divider {
    margin: 2rem 0;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253,250,246,0.26);
}

.text-center {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 200;
    letter-spacing: 0.04em;
    color: rgba(253,250,246,0.52);
}

.error-message,
.success-message {
    margin-top: 1rem;
    font-size: 0.86rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.error-message {
    color: #d8a39a;
}

.success-message {
    color: rgba(226,201,154,0.9);
}

/* checkbox row */
.auth-container input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--accent);
}

.password-field {
  position: relative;
  width: 100%;
}

.password-field input {
  width: 100%;
  padding-right: 56px;
  box-sizing: border-box;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);

  border: 0;
  background: transparent;
  color: rgba(253, 250, 246, 0.55);

  font: inherit;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: lowercase;

  cursor: pointer;
}

.password-toggle:hover {
  color: #C8B89A;
}

/* =========================================================
   LEGAL / TERMS / PRIVACY
   ========================================================= */

.legal-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: clamp(4rem, 6vw, 7rem);
    font-weight: 100;
    line-height: 0.92;
    letter-spacing: 0.02em;
    margin-bottom: 4rem;
    color: var(--off-white);
}

.legal-container h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 200;
    color: var(--off-white);
}

.legal-container p,
.legal-container li {
    font-size: 1.08rem;
    font-weight: 200;
    line-height: 1.85;
    color: rgba(253,250,246,0.58);
}

.legal-container a {
    color: rgba(226,201,154,0.88);
    text-decoration: none;
    border-bottom: 1px solid rgba(226,201,154,0.22);
}

@media (max-width: 768px) {
    .auth-page,
    .legal-page {
        padding: 8rem 5vw 6rem 5vw;
    }

    .auth-container {
        padding: 2rem;
    }

    .legal-container h1 {
        font-size: clamp(3.4rem, 12vw, 5rem);
    }
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */

#cookie-banner {

    position: fixed;

    bottom: 24px;
    left: 24px;

    width: 420px;

    background: rgba(17, 16, 9, 0.92);

    border: 1px solid rgba(253, 250, 246, 0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    padding: 28px;

    z-index: 9999;

}


.cookie-content {

    display: flex;
    flex-direction: column;

}


.cookie-text h3 {

    font-size: 0.82rem;

    font-weight: 300;

    letter-spacing: 0.16em;

    text-transform: lowercase;

    color: var(--white);

    margin-bottom: 14px;

}


.cookie-text p {

    font-size: 0.92rem;

    line-height: 1.5;

    font-weight: 200;

    color: rgba(253, 250, 246, 0.68);

}


.cookie-text a {

    color: var(--accent);

    text-decoration: none;

}


.cookie-buttons {

    display: flex;
    gap: 12px;

    margin-top: 24px;

}


.cookie-buttons button {

    background: transparent;

    border: 1px solid rgba(253, 250, 246, 0.18);

    color: var(--white);

    padding: 12px 18px;

    font-family: "acumin-pro-condensed", sans-serif;

    font-size: 0.8rem;

    font-weight: 300;

    letter-spacing: 0.12em;

    text-transform: lowercase;

    cursor: pointer;

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast);

}


.cookie-buttons button:hover {

    background: rgba(253, 250, 246, 0.06);

    border-color: rgba(253, 250, 246, 0.42);

}

.process-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 7rem 5vw 10rem 5vw;
}

/* mobile nav only */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .header {
        height: 66px;
        padding: 0 5vw;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 34px;
        height: 34px;
        background: transparent;
        border: 0;
        padding: 0;
        cursor: pointer;
        z-index: 1101;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 1px;
        background: rgba(253, 250, 246, 0.9);
        transition: transform 300ms ease, opacity 300ms ease;
    }

    .header .nav {
        position: fixed;
        top: 66px;
        left: 0;
        width: 100%;
        min-height: calc(100vh - 66px);
        padding: 4rem 5vw;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        background: rgba(10, 9, 6, 0.96);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 300ms ease, transform 300ms ease;
    }

    .header.menu-open .nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header .nav a {
        margin-left: 0 !important;
        font-size: 2.6rem;
        font-weight: 100;
        letter-spacing: 0.04em;
        line-height: 1;
        color: var(--off-white);
    }

    .header.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .header.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* =========================================================
   MOBILE HERO ONLY
   ========================================================= */

@media (max-width: 768px) {

    .landing-hero {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        background: var(--charcoal);
        overflow: hidden;
    }

    .hero-visual {
        order: 1;
        width: 100%;
        height: 72vh;
        min-height: 520px;
        background: var(--charcoal);
    }

    .hero-content {
        order: 2;
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 4rem 5vw 5rem 5vw;
        background: var(--charcoal);
    }

    .hero-copy {
        max-width: none;
    }

    .hero-copy h1 {
        font-size: clamp(3.6rem, 15vw, 5.4rem);
        line-height: 0.92;
        margin-bottom: 2rem;
    }

    .hero-copy .subtitle {
        font-size: 1.05rem;
        line-height: 1.55;
        max-width: 96%;
    }

    .hero-copy .secondary-line {
        font-size: 0.72rem;
        line-height: 1.6;
        margin-bottom: 2.4rem;
    }

    .hero-link {
        margin-top: 3rem;
    }

    .comparison-slider img {
        width: auto;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }

    .slider-handle {
        width: 38px;
        height: 38px;
    }

    .image-label {
        bottom: 20px;
        font-size: 0.56rem;
        letter-spacing: 0.14em;
    }

    .label-before {
        left: 18px;
    }

    .label-after {
        right: 18px;
    }
}

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    section {
        scroll-margin-top: 66px;
    }

    .process-section,
    .roster-section,
    .backgrounds-section,
    .difference-section,
    .examples-section,
    .faq-section,
    .early-access-section {
        padding-left: 5vw !important;
        padding-right: 5vw !important;
    }

    .process-intro,
    .examples-header,
    .faq-header,
    .roster-header,
    .backgrounds-header {
        margin-bottom: 3.5rem;
    }

    .cta-primary,
    .early-access-form button,
    .btn-submit {
        min-height: 54px;
    }
}

@media (max-width: 768px) {

    .site-footer {
        padding: 2rem 5vw 2.4rem 5vw;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.4rem;
    }

    .footer-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
    }

    .footer-left,
    .footer-right a {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }
}

/* =========================================================
   MOBILE LEGAL PAGES
   ========================================================= */

@media (max-width: 768px) {

    .legal-page {
        padding: 7rem 5vw 6rem 5vw !important;
    }

    .legal-page .legal-container h1 {
        font-size: clamp(3.2rem, 12vw, 4.8rem) !important;
        line-height: 0.92 !important;
        margin-bottom: 2rem !important;
    }

    .legal-page .legal-container h2 {
        font-size: 1.5rem !important;
        line-height: 1.15 !important;
        margin-top: 2.5rem !important;
    }

    .legal-page .legal-container p,
    .legal-page .legal-container li,
    .legal-page .last-updated {
        font-size: 1rem !important;
        line-height: 1.75 !important;
    }

    .legal-page .header {
        padding: 0 5vw !important;
    }

    .legal-page .logo-text {
        font-size: 1.5rem !important;
    }

    .legal-page .logo-icon {
        height: 30px !important;
    }

}
