/* ==================================================
   VEGAPUNK
   Global Styles
================================================== */

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray: #a3a3a3;
    --dark-gray: #171717;
    --border: rgba(255, 255, 255, 0.12);

    --amber: #ff9f1c;

    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);

    font-family: var(--font-body);

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ==================================================
   NAVBAR
================================================== */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 80px;

    padding: 0 5vw;

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

    z-index: 100;

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

    background: rgba(10, 10, 10, 0.82);

    backdrop-filter: blur(14px);
}


/* Logo */

.logo {

    display: flex;
    align-items: center;
    gap: 10px;

    font-family: var(--font-display);

    font-size: 20px;

    font-weight: 600;

    letter-spacing: 0.08em;

    transition: color 0.3s ease;
}

.logo img {

    height: 30px;
    width: auto;

    display: block;
}

.logo:hover {
    color: var(--amber);
}


/* Navigation */

.nav-links {

    display: flex;

    align-items: center;

    gap: 38px;

    margin-left: auto;
    margin-right: 40px;
}

.nav-links a {

    font-size: 11px;

    letter-spacing: 0.12em;

    color: #b8b8b8;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.nav-links a:hover {

    color: var(--white);

    transform: translateY(-1px);
}


/* CTA */

.nav-cta {

    height: 38px;

    padding: 0 16px;

    display: flex;
    align-items: center;

    gap: 12px;

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

    color: var(--white);

    font-size: 10px;

    letter-spacing: 0.1em;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.nav-cta span {

    color: var(--amber);

    transition: transform 0.3s ease;
}

.nav-cta:hover {

    background: var(--amber);

    color: var(--black);
}

.nav-cta:hover span {

    color: var(--black);

    transform: translateX(4px);
}


/* Mobile Menu */

.menu-toggle {
    position: relative;

    width: 44px;
    height: 44px;

    display: none;

    border: none;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    position: absolute;

    left: 50%;

    width: 22px;
    height: 1px;

    background: var(--white);

    transform: translateX(-50%);

    transition:
        transform 0.35s ease,
        top 0.35s ease;
}

.menu-toggle span:first-child {
    top: 18px;
}

.menu-toggle span:last-child {
    top: 25px;
}

.menu-toggle.active span:first-child {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.active span:last-child {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}


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

.hero {

    position: relative;

    min-height: 100vh;

    padding:
        80px 5vw 40px;

    display: flex;

    align-items: center;

    overflow: hidden;
}


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

.hero-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    pointer-events: none;
}


/* ==================================================
   CURSOR GLOW
================================================== */

.cursor-glow {

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 159, 28, 0.07),
            transparent 70%
        );

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

    pointer-events: none;

    transition:
        left 0.15s ease-out,
        top 0.15s ease-out;
}


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

.hero-meta {

    position: absolute;

    left: 5vw;
    right: 5vw;

    display: flex;

    justify-content: space-between;

    color: #626262;

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.16em;

    z-index: 2;
}

.top-meta {
    top: 105px;
}

.bottom-meta {
    bottom: 30px;
}

.scroll-indicator {

    display: flex;

    gap: 10px;
}

.scroll-indicator span {
    color: var(--amber);
}


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

.hero-content {

    position: relative;

    width: 100%;

    max-width: 1500px;

    margin: 0 auto;

    z-index: 3;
}


.hero-label {

    margin-bottom: 25px;

    font-size: 10px;

    letter-spacing: 0.2em;

    color: var(--amber);

    font-weight: 500;
}


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

.hero h1 {

    font-family: var(--font-display);

    font-size: clamp(
        60px,
        10vw,
        160px
    );

    line-height: 0.87;

    font-weight: 600;

    letter-spacing: -0.055em;

    max-width: 1200px;
}

.hero h1 span {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.7);

    transition:
        color 0.5s ease,
        -webkit-text-stroke 0.5s ease;
}

.hero h1:hover span {

    color: var(--amber);

    -webkit-text-stroke:
        1px var(--amber);
}


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

.hero-bottom {

    margin-top: 75px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 40px;
}


/* Description */

.hero-description {

    max-width: 500px;
}

.hero-description p {

    color: var(--gray);

    font-size: 14px;

    line-height: 1.8;
}


/* ==================================================
   BUTTONS
================================================== */

.hero-actions {

    margin-top: 30px;

    display: flex;

    gap: 25px;

    align-items: center;
}


.primary-button {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 15px 20px;

    background: var(--amber);

    color: var(--black);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.1em;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.primary-button:hover {

    transform: translateY(-3px);

    background: #ffb13b;
}

.primary-button span {

    font-size: 16px;

    transition:
        transform 0.3s ease;
}

.primary-button:hover span {

    transform: translateX(5px);
}


.secondary-button {

    display: inline-flex;

    gap: 12px;

    color: #888;

    font-size: 10px;

    letter-spacing: 0.1em;

    transition:
        color 0.3s ease;
}

.secondary-button:hover {

    color: var(--white);
}

.secondary-button span {

    color: var(--amber);
}


/* ==================================================
   SYSTEM STATUS
================================================== */

.system-status {

    width: 190px;

    padding: 20px;

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

    font-family: var(--font-display);

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


.status-header {

    display: flex;

    justify-content: space-between;

    color: #555;

    font-size: 8px;

    letter-spacing: 0.14em;
}


.status-line {

    width: 100%;

    height: 1px;

    margin: 15px 0;

    background: var(--border);
}


.status-main {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 10px;

    letter-spacing: 0.12em;
}


.status-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--amber);

    box-shadow:
        0 0 12px rgba(255, 159, 28, 0.7);
}


.status-info {

    margin-top: 16px;

    color: #555;

    font-size: 7px;

    line-height: 1.7;

    letter-spacing: 0.12em;
}


/* ==================================================
   ABOUT SECTION
================================================== */

.about-section {

    position: relative;

    min-height: 90vh;

    padding:
        150px 5vw;

    background: var(--white);

    color: var(--black);

    overflow: hidden;
}


.section-number {

    position: absolute;

    top: 45px;
    left: 5vw;

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.16em;

    color: #8a8a8a;
}


.about-container {

    max-width: 1500px;

    margin: 0 auto;
}


.about-heading h2 {

    max-width: 1100px;

    font-family: var(--font-display);

    font-size: clamp(
        55px,
        8vw,
        125px
    );

    line-height: 0.92;

    letter-spacing: -0.06em;

    font-weight: 600;
}


.about-heading h2 span {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px var(--black);
}


.about-content {

    margin-top: 110px;

    display: grid;

    grid-template-columns:
        1fr 0.7fr;

    gap: 12vw;

    align-items: end;
}


.about-description {

    max-width: 560px;
}


.about-description p {

    margin-bottom: 25px;

    font-size: 15px;

    line-height: 1.9;

    color: #555;
}


.about-link {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    margin-top: 25px;

    padding-bottom: 8px;

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

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.12em;
}


.about-link span {

    color: #ff9f1c;

    transition:
        transform 0.3s ease;
}


.about-link:hover span {

    transform: translateX(6px);
}


.about-principle {

    padding: 25px 0;

    border-top:
        1px solid rgba(0,0,0,0.15);
}


.about-principle > span {

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.15em;

    color: #888;
}


.principle-line {

    width: 100%;

    height: 1px;

    margin: 20px 0 30px;

    background: rgba(0,0,0,0.12);
}


.about-principle h3 {

    font-family: var(--font-display);

    font-size: clamp(
        28px,
        3vw,
        48px
    );

    line-height: 1;

    letter-spacing: -0.04em;
}


.about-principle h3 span {

    color: #ff9f1c;
}


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

@media (max-width: 800px) {

    .about-section {

        padding:
            120px 7vw;
    }

    .section-number {

        left: 7vw;
    }

    .about-heading h2 {

        font-size:
            clamp(50px, 13vw, 90px);
    }

    .about-content {

        margin-top: 70px;

        grid-template-columns: 1fr;

        gap: 70px;
    }

}

/* ==================================================
   SERVICES SECTION
================================================== */

.services-section {

    position: relative;

    min-height: 100vh;

    padding:
        150px 5vw;

    background: var(--black);

    color: var(--white);
}


.section-number.dark {
    color: #555;
}


.services-container {

    max-width: 1500px;

    margin: 0 auto;
}


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

.services-header {

    display: grid;

    grid-template-columns:
        1.2fr 0.6fr;

    gap: 10vw;

    align-items: end;

    margin-bottom: 90px;
}


.services-eyebrow {

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.16em;

    color: var(--amber);
}


.services-header h2 {

    margin-top: 25px;

    font-family: var(--font-display);

    font-size: clamp(
        65px,
        9vw,
        140px
    );

    line-height: 0.85;

    letter-spacing: -0.06em;
}


.services-header h2 span {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.65);
}


.services-header > p {

    color: #888;

    font-size: 13px;

    line-height: 1.8;

    max-width: 400px;
}


/* ================= SERVICE LIST ================= */

.service-list {

    border-top:
        1px solid var(--border);
}


.service-item {

    position: relative;

    display: grid;

    grid-template-columns:
        80px 1fr 80px;

    gap: 30px;

    align-items: center;

    padding: 42px 10px;

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

    transition:
        padding 0.4s ease,
        background 0.4s ease;
}


.service-item::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;

    height: 2px;

    background: var(--amber);

    transition:
        width 0.5s ease;
}


.service-item:hover {

    padding-left: 25px;

    background:
        rgba(255,255,255,0.025);
}


.service-item:hover::before {

    width: 100%;
}


/* Number */

.service-number {

    font-family: var(--font-display);

    font-size: 11px;

    color: #555;

    letter-spacing: 0.1em;

    transition:
        color 0.3s ease;
}


.service-item:hover .service-number {

    color: var(--amber);
}


/* Main */

.service-main h3 {

    font-family: var(--font-display);

    font-size: clamp(
        30px,
        4vw,
        58px
    );

    letter-spacing: -0.04em;

    font-weight: 500;
}


.service-main > p {

    margin-top: 7px;

    color: #777;

    font-size: 12px;
}


/* Tags */

.service-tags {

    margin-top: 22px;

    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.service-tags span {

    padding:
        6px 9px;

    border:
        1px solid rgba(255,255,255,0.1);

    color: #666;

    font-family: var(--font-display);

    font-size: 7px;

    letter-spacing: 0.1em;
}


/* Arrow */

.service-arrow {

    display: flex;

    justify-content: flex-end;

    font-size: 26px;

    color: #555;

    transition:
        color 0.3s ease,
        transform 0.4s ease;
}


.service-item:hover .service-arrow {

    color: var(--amber);

    transform:
        translateX(8px);
}


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

.services-footer {

    margin-top: 45px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.12em;

    color: #555;
}


.services-footer a {

    color: var(--white);

    transition:
        color 0.3s ease;
}


.services-footer a:hover {

    color: var(--amber);
}


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

@media (max-width: 800px) {

    .services-section {

        padding:
            120px 7vw;
    }


    .services-header {

        grid-template-columns: 1fr;

        gap: 40px;

        margin-bottom: 60px;
    }


    .service-item {

        grid-template-columns:
            40px 1fr 30px;

        gap: 15px;

        padding: 30px 5px;
    }


    .service-main h3 {

        font-size: 36px;
    }


    .service-tags {

        display: none;
    }


    .services-footer {

        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

}

/* ==================================================
   AUDIENCE SECTION
================================================== */

.audience-section {

    position: relative;

    min-height: 100vh;

    padding:
        150px 5vw;

    background: var(--white);

    color: var(--black);

    overflow: hidden;
}


.section-number.light {

    color: #888;
}


.audience-container {

    max-width: 1500px;

    margin: 0 auto;
}


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

.audience-header {

    margin-bottom: 80px;
}


.audience-header > span {

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.16em;

    color: #888;
}


.audience-header h2 {

    margin-top: 25px;

    font-family: var(--font-display);

    font-size: clamp(
        65px,
        9vw,
        140px
    );

    line-height: 0.85;

    letter-spacing: -0.06em;
}


.audience-header h2 span {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px var(--black);
}


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

.audience-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 2px;

    background: var(--black);
}


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

.audience-card {

    position: relative;

    min-height: 570px;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    background: #f4f4f4;

    transition:
        color 0.5s ease,
        background 0.5s ease;
}


/* Orange background layer */

.audience-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background: var(--amber);

    transform:
        translateY(100%);

    transition:
        transform 0.6s
        cubic-bezier(.77,0,.18,1);

    z-index: 0;
}


.audience-card:hover::before {

    transform:
        translateY(0);
}


/* Top */

.audience-card-top {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.13em;

    color: #888;

    transition:
        color 0.4s ease;
}


.audience-card:hover .audience-card-top {

    color: rgba(0,0,0,0.6);
}


/* Content */

.audience-card-content {

    position: relative;

    z-index: 2;
}


.audience-label {

    margin-bottom: 20px;

    font-family: var(--font-display);

    font-size: 10px;

    letter-spacing: 0.15em;

    color: #888;
}


.audience-card h3 {

    font-family: var(--font-display);

    font-size: clamp(
        38px,
        4.5vw,
        72px
    );

    line-height: 0.88;

    letter-spacing: -0.05em;
}


.audience-card h3 span {

    color: transparent;

    -webkit-text-stroke:
        1px var(--black);
}


.audience-card p {

    max-width: 420px;

    margin-top: 30px;

    font-size: 13px;

    line-height: 1.8;

    color: #666;

    transition:
        color 0.4s ease;
}


.audience-card:hover p {

    color: rgba(0,0,0,0.65);
}


/* Bottom */

.audience-card-bottom {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 20px;

    border-top:
        1px solid rgba(0,0,0,0.1);

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.12em;

    color: #888;
}


.audience-arrow {

    font-size: 25px;

    color: var(--black);

    transition:
        transform 0.4s ease;
}


.audience-card:hover .audience-arrow {

    transform:
        translateX(8px);
}


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

.audience-note {

    margin-top: 35px;

    display: flex;

    align-items: center;

    gap: 15px;

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.14em;

    color: #888;
}


.amber-dot {

    color: var(--amber);

    font-size: 11px;
}


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

@media (max-width: 850px) {

    .audience-section {

        padding:
            120px 7vw;
    }


    .audience-header h2 {

        font-size:
            clamp(55px, 13vw, 95px);
    }


    .audience-grid {

        grid-template-columns: 1fr;
    }


    .audience-card {

        min-height: 480px;

        padding: 28px;
    }


    .audience-card h3 {

        font-size:
            clamp(42px, 11vw, 70px);
    }

}

/* ==================================================
   WHY VEGAPUNK / PRINCIPLES
================================================== */

.principles-section {

    position: relative;

    min-height: 100vh;

    padding:
        150px 5vw 100px;

    background: #111111;

    color: var(--white);

    overflow: hidden;
}


.dark-principles {
    color: #555;
}


.principles-container {

    max-width: 1500px;

    margin: 0 auto;
}


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

.principles-intro {

    display: grid;

    grid-template-columns:
        1fr 0.6fr;

    gap: 10vw;

    margin-bottom: 110px;
}


.principles-intro > span {

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.16em;

    color: var(--amber);
}


.principles-intro p {

    max-width: 430px;

    color: #777;

    font-size: 13px;

    line-height: 1.8;
}


/* ==================================================
   PRINCIPLE LIST
================================================== */

.principle-list {

    border-top:
        1px solid var(--border);
}


.principle-item {

    display: grid;

    grid-template-columns:
        70px 1fr 0.5fr;

    gap: 35px;

    align-items: center;

    padding:
        55px 0;

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

    transition:
        padding 0.4s ease;
}


.principle-item:hover {

    padding-left: 20px;
}


/* Index */

.principle-index {

    font-family: var(--font-display);

    font-size: 10px;

    letter-spacing: 0.1em;

    color: #555;

    transition:
        color 0.3s ease;
}


.principle-item:hover .principle-index {

    color: var(--amber);
}


/* Word */

.principle-word {

    font-family: var(--font-display);

    font-size: clamp(
        65px,
        9vw,
        145px
    );

    font-weight: 600;

    line-height: 0.8;

    letter-spacing: -0.07em;

    color: var(--white);

    transition:
        transform 0.4s ease;
}


.principle-item:hover .principle-word {

    transform:
        translateX(10px);
}


.principle-word span {

    color: var(--amber);
}


/* Description */

.principle-description {

    max-width: 350px;
}


.principle-description > span {

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.13em;

    color: #888;
}


.principle-description p {

    margin-top: 18px;

    color: #666;

    font-size: 12px;

    line-height: 1.8;
}


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

.principles-footer {

    margin-top: 50px;

    display: flex;

    justify-content: space-between;

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.14em;

    color: #555;
}


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

@media (max-width: 850px) {

    .principles-section {

        padding:
            120px 7vw 80px;
    }


    .principles-intro {

        grid-template-columns: 1fr;

        gap: 30px;

        margin-bottom: 70px;
    }


    .principle-item {

        grid-template-columns:
            35px 1fr;

        gap: 15px;

        padding:
            40px 0;
    }


    .principle-word {

        font-size:
            clamp(55px, 16vw, 100px);
    }


    .principle-description {

        grid-column: 2;

        margin-top: 10px;
    }


    .principles-footer {

        flex-direction: column;

        gap: 15px;
    }

}

/* ==================================================
   SECURITY INSIGHTS
================================================== */

.insights-section {

    position: relative;

    min-height: 100vh;

    padding:
        150px 5vw;

    background: var(--white);

    color: var(--black);
}


.insight-number {

    color: #888;
}


.insights-container {

    max-width: 1500px;

    margin: 0 auto;
}


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

.insights-header {

    display: grid;

    grid-template-columns:
        1.2fr 0.6fr;

    gap: 10vw;

    align-items: end;

    margin-bottom: 100px;
}


.insights-eyebrow {

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.16em;

    color: #888;
}


.insights-header h2 {

    margin-top: 25px;

    font-family: var(--font-display);

    font-size: clamp(
        65px,
        9vw,
        140px
    );

    line-height: 0.85;

    letter-spacing: -0.06em;
}


.insights-header h2 span {

    color: transparent;

    -webkit-text-stroke:
        1px var(--black);
}


.insights-intro {

    max-width: 420px;
}


.insights-intro p {

    margin-bottom: 18px;

    color: #666;

    font-size: 13px;

    line-height: 1.8;
}


/* ==================================================
   ARTICLE LIST
================================================== */

.insight-list {

    border-top:
        1px solid rgba(0,0,0,0.15);
}


.insight-item {

    position: relative;

    display: grid;

    grid-template-columns:
        70px 1fr 150px;

    gap: 35px;

    align-items: center;

    padding:
        45px 10px;

    border-bottom:
        1px solid rgba(0,0,0,0.15);

    transition:
        padding 0.4s ease,
        background 0.4s ease;
}


.insight-item::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;

    height: 2px;

    background: var(--amber);

    transition:
        width 0.5s ease;
}


.insight-item:hover {

    padding-left: 25px;

    background:
        rgba(0,0,0,0.025);
}


.insight-item:hover::before {

    width: 100%;
}


/* Number */

.insight-number {

    font-family: var(--font-display);

    font-size: 10px;

    color: #999;

    letter-spacing: 0.1em;

    transition:
        color 0.3s ease;
}


.insight-item:hover .insight-number {

    color: var(--amber);
}


/* Main */

.insight-category {

    margin-bottom: 12px;

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.14em;

    color: #999;
}


.insight-main h3 {

    font-family: var(--font-display);

    font-size: clamp(
        35px,
        4vw,
        60px
    );

    line-height: 0.9;

    letter-spacing: -0.05em;
}


.insight-main h3 span {

    color: transparent;

    -webkit-text-stroke:
        1px var(--black);
}


.insight-main p {

    margin-top: 15px;

    color: #777;

    font-size: 12px;

    line-height: 1.7;
}


/* Action */

.insight-action {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 20px;

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.12em;

    color: #777;
}


.insight-arrow {

    font-size: 22px;

    color: var(--black);

    transition:
        transform 0.4s ease,
        color 0.3s ease;
}


.insight-item:hover .insight-arrow {

    color: var(--amber);

    transform:
        translateX(8px);
}


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

.insights-footer {

    margin-top: 45px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}


.insights-footer span {

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.14em;

    color: #999;
}


.insights-footer p {

    margin-top: 8px;

    color: #777;

    font-size: 11px;
}


.insights-footer a,
.insights-footer button {

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.12em;

    color: var(--black);

    transition:
        color 0.3s ease;
}


.insights-footer a:hover,
.insights-footer button:hover {

    color: var(--amber);
}


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

@media (max-width: 800px) {

    .insights-section {

        padding:
            120px 7vw;
    }


    .insights-header {

        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 65px;
    }


    .insight-item {

        grid-template-columns:
            35px 1fr;

        gap: 15px;

        padding:
            35px 5px;
    }


    .insight-main h3 {

        font-size:
            clamp(32px, 9vw, 55px);
    }


    .insight-action {

        grid-column: 2;

        justify-content: flex-start;

        margin-top: 15px;
    }


    .insights-footer {

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

}

/* ==================================================
   SOCIAL / INSTAGRAM
================================================== */

.social-section {

    position: relative;

    min-height: 100vh;

    padding:
        150px 5vw;

    background: #111111;

    color: var(--white);

    overflow: hidden;
}


.social-number {

    color: #555;
}


.social-container {

    max-width: 1500px;

    margin: 0 auto;
}


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

.social-header {

    display: grid;

    grid-template-columns:
        1.2fr 0.6fr;

    gap: 10vw;

    align-items: end;

    margin-bottom: 90px;
}


.social-eyebrow {

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.16em;

    color: var(--amber);
}


.social-header h2 {

    margin-top: 25px;

    font-family: var(--font-display);

    font-size: clamp(
        65px,
        9vw,
        140px
    );

    line-height: 0.85;

    letter-spacing: -0.06em;
}


.social-header h2 span {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.65);
}


.social-description {

    max-width: 400px;
}


.social-description p {

    margin-bottom: 25px;

    color: #777;

    font-size: 13px;

    line-height: 1.8;
}


.social-handle {

    font-family: var(--font-display);

    font-size: 10px;

    letter-spacing: 0.12em;

    color: var(--white);

    transition:
        color 0.3s ease;
}


.social-handle:hover {

    color: var(--amber);
}


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

.social-grid {

    display: grid;

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

    gap: 18px;
}


/* ==================================================
   POST
================================================== */

.social-post {

    display: block;

    overflow: hidden;
}


.post-visual {

    position: relative;

    aspect-ratio: 1 / 1;

    padding: 25px;

    overflow: hidden;

    background: #191919;

    transition:
        transform 0.5s ease;
}


.social-post:hover .post-visual {

    transform:
        translateY(-8px);
}


/* Grid */

.post-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.05)
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.05)
            1px,
            transparent 1px
        );

    background-size:
        35px 35px;
}


/* Label */

.post-label {

    position: relative;

    z-index: 2;

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.14em;

    color: #777;
}


/* Title */

.post-title {

    position: absolute;

    left: 25px;

    bottom: 35px;

    z-index: 2;

    font-family: var(--font-display);

    font-size: clamp(
        30px,
        3vw,
        50px
    );

    line-height: 0.9;

    letter-spacing: -0.05em;
}


.post-title strong {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px var(--white);
}


/* ==================================================
   POST GRAPHICS
================================================== */

.post-symbol {

    position: absolute;

    top: 50%;

    right: 15%;

    transform:
        translateY(-50%);

    font-size: 70px;

    color: var(--amber);

    opacity: 0.9;
}


.password-lines {

    position: absolute;

    right: 12%;

    top: 35%;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.password-lines i {

    display: block;

    width: 80px;

    height: 5px;

    background: var(--amber);
}


.password-lines i:nth-child(2) {

    width: 55px;
}


.password-lines i:nth-child(3) {

    width: 70px;
}


.password-lines i:nth-child(4) {

    width: 40px;
}


.wifi-symbol {

    position: absolute;

    top: 35%;

    right: 12%;

    font-family: var(--font-display);

    font-size: 45px;

    letter-spacing: -8px;

    color: var(--amber);

    transform:
        rotate(-90deg);
}


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

.post-meta {

    display: flex;

    justify-content: space-between;

    padding:
        14px 3px;

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.12em;

    color: #666;
}


.social-post:hover .post-meta {

    color: #999;
}


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

.social-footer {

    margin-top: 45px;

    display: flex;

    justify-content: space-between;

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.14em;

    color: #555;
}


.social-footer a {

    color: var(--white);

    transition:
        color 0.3s ease;
}


.social-footer a:hover {

    color: var(--amber);
}


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

@media (max-width: 800px) {

    .social-section {

        padding:
            120px 7vw;
    }


    .social-header {

        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 60px;
    }


    .social-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .social-footer {

        flex-direction: column;

        gap: 20px;
    }

}

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

.contact-section {

    position: relative;

    min-height: 100vh;

    padding:
        160px 5vw 100px;

    background: var(--black);

    color: var(--white);

    overflow: hidden;
}


.contact-number {

    color: #555;
}


.contact-container {

    max-width: 1500px;

    margin: 0 auto;
}


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

.contact-eyebrow {

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.16em;

    color: var(--amber);
}


.contact-heading h2 {

    margin-top: 35px;

    font-family: var(--font-display);

    font-size: clamp(
        70px,
        11vw,
        175px
    );

    line-height: 0.82;

    letter-spacing: -0.07em;

    font-weight: 600;
}


.contact-heading h2 span {

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.65);
}


/* ==================================================
   OPTIONS
================================================== */

.contact-options {

    margin-top: 120px;

    border-top:
        1px solid var(--border);
}


.contact-option {

    position: relative;

    display: grid;

    grid-template-columns:
        150px 1fr 80px;

    gap: 40px;

    align-items: center;

    padding:
        45px 10px;

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

    transition:
        padding 0.4s ease,
        background 0.4s ease;
}


.contact-option::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 0;

    height: 2px;

    background: var(--amber);

    transition:
        width 0.5s ease;
}


.contact-option:hover {

    padding-left: 30px;

    background:
        rgba(255,255,255,0.025);
}


.contact-option:hover::before {

    width: 100%;
}


/* Number */

.contact-option-number {

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.12em;

    color: #555;

    transition:
        color 0.3s ease;
}


.contact-option:hover .contact-option-number {

    color: var(--amber);
}


/* Content */

.contact-option-content h3 {

    font-family: var(--font-display);

    font-size: clamp(
        28px,
        3.5vw,
        52px
    );

    line-height: 0.95;

    letter-spacing: -0.04em;
}


.contact-option-content h3 span {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.6);
}


.contact-option-content p {

    max-width: 500px;

    margin-top: 18px;

    color: #666;

    font-size: 12px;

    line-height: 1.8;
}


/* Arrow */

.contact-option-arrow {

    display: flex;

    justify-content: flex-end;

    font-size: 30px;

    color: #555;

    transition:
        transform 0.4s ease,
        color 0.3s ease;
}


.contact-option:hover .contact-option-arrow {

    color: var(--amber);

    transform:
        translateX(10px);
}


/* ==================================================
   INFO
================================================== */

.contact-info {

    display: grid;

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

    gap: 40px;

    margin-top: 70px;

    padding-top: 30px;

    border-top:
        1px solid var(--border);
}


.contact-info span {

    display: block;

    margin-bottom: 12px;

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.14em;

    color: #555;
}


.contact-info a,
.contact-info p {

    font-family: var(--font-display);

    font-size: 10px;

    letter-spacing: 0.08em;

    color: #999;

    transition:
        color 0.3s ease;
}


.contact-info a:hover {

    color: var(--amber);
}


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

@media (max-width: 800px) {

    .contact-section {

        padding:
            120px 7vw 80px;
    }


    .contact-heading h2 {

        font-size:
            clamp(60px, 15vw, 110px);
    }


    .contact-options {

        margin-top: 80px;
    }


    .contact-option {

        grid-template-columns:
            45px 1fr 30px;

        gap: 15px;

        padding:
            35px 5px;
    }


    .contact-option-content h3 {

        font-size:
            clamp(26px, 7vw, 45px);
    }


    .contact-info {

        grid-template-columns: 1fr;

        gap: 30px;
    }

}

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

.site-footer {

    position: relative;

    background: #080808;

    color: var(--white);

    border-top:
        1px solid rgba(255,255,255,0.08);
}


.footer-container {

    max-width: 1500px;

    margin: 0 auto;

    padding:
        80px 5vw 30px;
}


/* ==================================================
   TOP
================================================== */

.footer-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    padding-bottom: 70px;

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}


.footer-logo {

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

    font-family: var(--font-display);

    font-size: 42px;

    font-weight: 600;

    letter-spacing: -0.06em;

    color: var(--white);
}


.footer-logo img {

    height: 44px;
    width: auto;

    display: block;
}


.footer-logo span {

    margin-left: 5px;

    font-size: 10px;

    color: var(--amber);

    vertical-align: top;
}


.footer-brand p {

    margin-top: 12px;

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.16em;

    color: #555;
}


/* ==================================================
   STATUS
================================================== */

.footer-status {

    text-align: right;
}


.footer-status > span {

    display: block;

    margin-bottom: 12px;

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.14em;

    color: #555;
}


.status-indicator {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 8px;

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.12em;

    color: #888;
}


.status-indicator i {

    display: block;

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--amber);

    box-shadow:
        0 0 10px var(--amber);

    animation:
        statusPulse 2s infinite;
}


@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }

}


/* ==================================================
   MIDDLE
================================================== */

.footer-middle {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10vw;

    padding:
        80px 0;
}


.footer-tagline {

    display: flex;

    flex-direction: column;

    font-family: var(--font-display);

    font-size: clamp(
        50px,
        6vw,
        90px
    );

    line-height: 0.85;

    letter-spacing: -0.06em;
}


.footer-tagline span:nth-child(2) {

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.6);
}


.footer-tagline span:nth-child(3) {

    color: var(--amber);
}


/* ==================================================
   LINKS
================================================== */

.footer-links {

    display: grid;

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

    gap: 30px;
}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.footer-heading {

    margin-bottom: 10px;

    font-family: var(--font-display);

    font-size: 8px;

    letter-spacing: 0.14em;

    color: #555;
}


.footer-column a {

    font-family: var(--font-display);

    font-size: 9px;

    letter-spacing: 0.08em;

    color: #888;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-column a:hover {

    color: var(--white);

    transform:
        translateX(5px);
}


/* ==================================================
   BOTTOM
================================================== */

.footer-bottom {

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,0.08);

    font-family: var(--font-display);

    font-size: 7px;

    letter-spacing: 0.12em;

    color: #444;
}


.footer-bottom > span:nth-child(2) {

    text-align: center;
}


.footer-legal {

    display: flex;

    justify-content: flex-end;

    gap: 25px;
}


.footer-legal a {

    color: #555;

    transition:
        color 0.3s ease;
}


.footer-legal a:hover {

    color: var(--amber);
}


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

@media (max-width: 800px) {

    .footer-container {

        padding:
            60px 7vw 25px;
    }


    .footer-top {

        flex-direction: column;

        gap: 40px;
    }


    .footer-status {

        text-align: left;
    }


    .status-indicator {

        justify-content: flex-start;
    }


    .footer-middle {

        grid-template-columns: 1fr;

        gap: 60px;

        padding:
            60px 0;
    }


    .footer-links {

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


    .footer-bottom {

        grid-template-columns: 1fr;

        gap: 15px;

        align-items: flex-start;
    }


    .footer-bottom > span:nth-child(2) {

        text-align: left;
    }


    .footer-legal {

        justify-content: flex-start;
    }

}

/**/

.placeholder-section {

    min-height: 80vh;

    padding: 150px 5vw;

    background: var(--white);

    color: var(--black);
}

.placeholder-section span {

    font-family: var(--font-display);

    color: #888;

    font-size: 10px;

    letter-spacing: 0.15em;
}

.placeholder-section h2 {

    margin-top: 40px;

    font-family: var(--font-display);

    font-size: clamp(
        45px,
        7vw,
        110px
    );

    line-height: 0.95;

    letter-spacing: -0.05em;
}


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

@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {

        min-height: 100svh;

        padding:
            100px 7vw 70px;
    }

    .hero h1 {

        font-size: clamp(
            55px,
            13vw,
            110px
        );
    }

    .hero-bottom {

        margin-top: 55px;

        flex-direction: column;

        align-items: flex-start;
    }

    .system-status {

        display: none;
    }

    .hero-meta {

        left: 7vw;
        right: 7vw;
    }

    .top-meta {
        top: 95px;
    }

    .bottom-meta {
        bottom: 20px;
    }
}


@media (max-width: 550px) {

    .navbar {

        height: 70px;

        padding: 0 6vw;
    }

    .logo {
        font-size: 17px;
    }

    .hero {

        padding:
            100px 6vw 60px;
    }

    .hero-label {

        font-size: 8px;

        line-height: 1.5;
    }

    .hero h1 {

        font-size: 16vw;

        line-height: 0.9;
    }

    .hero-bottom {

        margin-top: 45px;
    }

    .hero-description p {

        font-size: 13px;
    }

    .hero-actions {

        flex-wrap: wrap;

        gap: 20px;
    }

    .hero-meta {

        font-size: 7px;
    }

    .hero-grid {

        background-size: 55px 55px;
    }
}

body.menu-open {
    overflow: hidden;
}

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

.contact-form-wrapper {

    margin-top: 100px;

    display: grid;

    grid-template-columns: 0.8fr 1.5fr;

    gap: 100px;

}


.contact-form-intro {

    display: flex;

    flex-direction: column;

    gap: 25px;

}


.contact-form-intro span {

    font-family: "Space Grotesk", sans-serif;

    font-size: 11px;

    letter-spacing: 0.18em;

    opacity: 0.55;

}


.contact-form-intro p {

    max-width: 320px;

    font-size: 14px;

    line-height: 1.7;

    opacity: 0.65;

}


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

.contact-form {

    display: flex;

    flex-direction: column;

    gap: 42px;

}


.form-field {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.form-field label {

    font-family: "Space Grotesk", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.16em;

}


.form-field label span {

    color: #38bdf8;

}


.form-field label .optional {

    margin-left: 8px;

    color: inherit;

    opacity: 0.35;

}


.form-field input,
.form-field textarea {

    width: 100%;

    padding: 16px 0;

    border: none;

    border-bottom: 1px solid rgba(255,255,255,0.18);

    outline: none;

    background: transparent;

    color: inherit;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    transition:
        border-color 0.3s ease;

}


.form-field textarea {

    resize: vertical;

    min-height: 140px;

}


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

    color: currentColor;

    opacity: 0.25;

}


.form-field input:focus,
.form-field textarea:focus {

    border-bottom-color: #38bdf8;

}


/* ================= SUBMIT ================= */

.form-submit {

    margin-top: 10px;

}


.form-submit .primary-button {

    border: none;

    cursor: pointer;

}


/* ================= STATUS ================= */

.form-status {

    min-height: 24px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 11px;

    letter-spacing: 0.12em;

    line-height: 1.6;

}


.form-status.success {

    color: #38bdf8;

}


.form-status.error {

    color: #f59e0b;

}


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

@media (max-width: 900px) {

    .contact-form-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

        margin-top: 60px;

    }

    .contact-form-intro p {

        max-width: 500px;

    }

}

/* =====================================================
   TEAM SECTION
===================================================== */

.team-section {

    background: #ffffff;
    color: #050505;

    position: relative;

    padding: 140px 6vw 100px;

    border-top: 1px solid #111;
}


/* SECTION NUMBER */

.team-number {

    color: #111;

    position: absolute;

    top: 40px;
    left: 6vw;

    font-family: "Space Grotesk", sans-serif;

    font-size: 11px;
    letter-spacing: 0.14em;
}


/* CONTAINER */

.team-container {

    max-width: 1400px;

    margin: 0 auto;
}


/* HEADER */

.team-header {

    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 80px;

    margin-bottom: 80px;
}


.team-eyebrow {

    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.16em;

    margin-bottom: 20px;
}


.team-header h2 {

    margin: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(52px, 7vw, 100px);

    line-height: 0.9;

    letter-spacing: -0.055em;

    font-weight: 600;
}


.team-header h2 span {

    display: block;

    font-weight: 400;
}


.team-intro {

    max-width: 390px;

    padding-bottom: 5px;
}


.team-intro p {

    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    line-height: 1.7;

    color: #555;
}


/* TEAM GRID */

.team-grid {

    display: grid;

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

    gap: 55px 28px;
}


/* MEMBER */

.team-member {

    border-top: 1px solid #111;

    padding-top: 14px;
}


/* PHOTO */

.member-photo {

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #eeeeee;

    margin-bottom: 22px;
}


.member-photo img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


.team-member:hover .member-photo img {

    transform: scale(1.025);
}


/* MEMBER INFO */

.member-number {

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;

    letter-spacing: 0.14em;

    color: #777;

    margin-bottom: 9px;
}


.member-info h3 {

    margin: 0 0 22px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 24px;

    font-weight: 600;

    letter-spacing: -0.025em;
}


/* DETAILS */

.member-details {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    padding: 17px 0;

    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}


.member-details span,
.member-role > span {

    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.14em;

    color: #777;

    margin-bottom: 7px;
}


.member-details p {

    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 12px;

    line-height: 1.5;

    word-break: break-word;
}


/* CONTRIBUTION */

.member-role {

    padding-top: 18px;
}


.member-role p {

    margin: 0;

    max-width: 390px;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    line-height: 1.65;

    color: #333;
}


/* FOOTER */

.team-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 70px;

    margin-top: 80px;

    border-top: 1px solid #111;

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;

    letter-spacing: 0.14em;
}


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

@media (max-width: 900px) {

    .team-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }


    .team-grid {

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

        gap: 45px 20px;
    }

}


@media (max-width: 600px) {

    .team-section {

        padding: 120px 6vw 70px;
    }


    .team-header h2 {

        font-size: 56px;
    }


    .team-grid {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .member-photo {

        aspect-ratio: 4 / 5;
    }


    .team-footer {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

}


/* ==================================================
   BUTTON RESET (service / insight cards + footer legal
   converted from <a> to <button> for modal triggers)
================================================== */

.service-item,
.insight-item,
.insights-footer button,
.footer-legal button {

    background: none;
    border: 0;

    font-family: inherit;
    font-size: inherit;
    color: inherit;

    text-align: left;

    cursor: pointer;

    width: 100%;
}

.audience-card {

    border: 0;

    font-family: inherit;
    font-size: inherit;
    color: inherit;

    text-align: left;

    cursor: pointer;

    width: 100%;
}

.footer-legal button {

    width: auto;
    padding: 0;
}

.insights-footer button {
    width: auto;
}


/* ==================================================
   MODAL SYSTEM
================================================== */

.modal-overlay {

    position: fixed;
    inset: 0;

    z-index: 1000;

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

    padding: 24px;

    background: rgba(10, 10, 10, 0.86);
    backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {

    position: relative;

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

    max-height: 82vh;

    overflow-y: auto;

    background: var(--dark-gray);

    border: 1px solid var(--border);
    border-top: 2px solid var(--amber);

    padding: 48px 42px 42px;

    transform: translateY(16px);

    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {

    position: absolute;

    top: 20px;
    right: 20px;

    width: 34px;
    height: 34px;

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

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

    color: var(--gray);

    font-size: 14px;

    cursor: pointer;

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

.modal-close:hover {
    color: var(--amber);
    border-color: var(--amber);
}

.modal-eyebrow {

    font-family: var(--font-display);

    font-size: 11px;

    letter-spacing: 0.14em;

    color: var(--amber);

    margin-bottom: 18px;
}

.modal-title {

    font-family: var(--font-display);

    font-size: 28px;
    font-weight: 600;

    letter-spacing: 0.01em;

    margin-bottom: 22px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);
}

.modal-body {

    font-size: 15px;
    line-height: 1.7;

    color: #c9c9c9;
}

.modal-body p {
    margin-bottom: 16px;
}

.modal-body ul,
.modal-body ol {

    margin: 0 0 16px 20px;
}

.modal-body li {
    margin-bottom: 10px;
}

.modal-body strong {
    color: var(--white);
}

@media (max-width: 640px) {

    .modal-box {
        padding: 38px 24px 32px;
    }

    .modal-title {
        font-size: 22px;
    }
}
