@import url('../global-typography.css');

:root {
    --font: 'Plus Jakarta Sans', sans-serif;
    --teal: #0A919B;
    --teal-dark: #12474C;
    --black: #0d0d0d;
    --white: #ffffff;
    --soft-gray: #DDDBDD;
}

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

body {
    background-color: #f0f0f0;
    color: var(--black);
    font-family: var(--font);
    overflow-x: hidden;
}

/* WATERMARK BACKGROUND */
.watermark-wrap {
    position: fixed;
    top: 25%;
    left: 0;
    width: 100%;
    pointer-events: none;

    z-index: 0;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--teal);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    /* This creates the inversion effect */
    transition: transform 0.2s ease;
}

.custom-cursor.expand {
    transform: scale(4);
}

.scrolling-text {
    font-size: 20vw;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

/* HERO */
.k-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    position: relative;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    z-index: 2;
}

.k-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 700px);
    margin: 0 auto;
}

.k-eyebrow {
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--teal);
    font-size: 12.8px;
    margin-bottom: 15px;
}

.k-title {
    font-size: clamp(56px, 9vw, 128px);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -2px;
}

.teal-outline {
    color: #0A919B;
    -webkit-text-stroke: 0;
}

.k-hero-caption {
    max-width: 700px;
    margin-top: 40px;
    font-weight: 500;
    font-size: 19.2px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.k-hero-caption p {
    margin-left: auto;
    margin-right: auto;
}

/* SECTIONS */
.k-section {
    min-height: 64vh;
    padding: 96px 8%;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--soft-gray);
    z-index: 2;
}

.k-section:nth-of-type(odd) {
    background: linear-gradient(135deg, #f7f7f7 0%, var(--soft-gray) 100%);
}

.k-section:nth-of-type(even) {
    background: linear-gradient(135deg, #d7e6e7 0%, #f4f4f4 100%);
}

/* THE BOXES */
.k-content-box {
    padding: 70px 50px;
    max-width: 650px;
    position: relative;
    border: 1px solid rgba(13, 13, 13, 0.16);
    box-shadow: 18px 18px 0 rgba(13, 13, 13, 0.14);
    overflow: hidden;
}

.k-content-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: var(--teal);
}

.k-num {
    font-weight: 800;
    font-size: 16px;
    display: block;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.k-content-box h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.k-content-box p {
    font-size: 18.4px;
    line-height: 1.6;
    font-weight: 500;
}

.kinetic-container .k-inside-industries {
    background: var(--white);
    color: var(--black);
    z-index: 2;
}

.kinetic-container .industry-container {
    max-width: 1400px;
    margin: 0 auto;
}

.kinetic-container .k-inside-industries .section-intro h2 {
    max-width: 980px;
}

.kinetic-container .k-inside-industries .industry-info h3 {
    min-width: 380px;
}

.kinetic-container .k-inside-industries .industry-info p {
    max-width: 620px;
}

/* BOX STYLES */
.teal-bg {
    background: var(--teal);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
}

.dark-bg {
    background: var(--black);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.18);
}

.white-bg {
    background: white;
    color: var(--black);
}

.teal-bg::before,
.dark-bg::before {
    background: var(--soft-gray);
}

.border-box {
    border-color: rgba(13, 13, 13, 0.16);
    box-shadow: 18px 18px 0 rgba(10, 145, 155, 0.22);
}

.offset-right {
    margin-left: auto;
}

/* THE SLASH EFFECT */
.k-slash-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #f7f7f7 0%, var(--soft-gray) 100%);
}

.slash-bar {
    position: absolute;
    width: 150vw;
    height: 350px;
    background: var(--teal);
    transform: rotate(-8deg);
    z-index: 0;
}

.slash-overlap {
    z-index: 1;
    transform: rotate(2deg);
}

/* DOGS */
.k-dog-hero {
    width: 100%;
    text-align: center;
    padding: 100px 0;
}

.k-dog-hero h2 {
    font-size: 10vw;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -0.05em;
    line-height: 0.9;
}

.k-dog-hero p {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    color: #444;
}

/* FOOTER */
.k-footer {
    padding: 150px 8%;
    background: var(--black);
    color: #DDDBDD;
    text-align: center;
    position: relative;
    z-index: 3;
}

.k-footer-sub {
    color: var(--teal);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 11.2px;
    margin-bottom: 20px;
}

.k-footer-text {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1.2;
}

.k-btn {
    background: var(--teal);
    color: #DDDBDD;
    border: none;
    padding: 25px 60px;
    font-size: 19.2px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 50px;
    transition: 0.4s;
}

.k-btn:hover {
    transform: scale(1.1);
    background: #fff;
    color: var(--teal);
}

@media (max-width: 1024px) {
    .k-content-box {
        box-shadow: 14px 14px 0 rgba(13, 13, 13, 0.14);
        padding: 40px 30px;
    }

    .k-title {
        font-size: 80px;
    }

    .slash-bar {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .k-hero {
        padding: 0 5%;
        height: 100svh;
        min-height: 100svh;
    }

    .k-title {
        font-size: 56px;
    }

    .k-hero-caption {
        font-size: 16px;
        margin-top: 20px;
    }

    .k-section {
        padding: 80px 5%;
        min-height: auto;
    }

    .k-content-box {
        padding: 30px 20px;
        box-shadow: 10px 10px 0 rgba(13, 13, 13, 0.14);
    }

    .k-content-box h2 {
        font-size: 35.2px;
        margin-bottom: 15px;
    }

    .k-content-box p {
        font-size: 16px;
    }

    .kinetic-container .k-inside-industries .industry-info h3 {
        min-width: auto;
    }

    .kinetic-container .k-inside-industries .section-intro h2 {
        max-width: 100%;
    }

    .kinetic-container .k-inside-industries .industry-list {
        margin-top: 40px;
    }

    .kinetic-container .k-inside-industries .industry-item {
        padding: 28px 0;
    }

    .kinetic-container .k-inside-industries .industry-info {
        width: 100%;
    }

    .border-box {
        box-shadow: 10px 10px 0 rgba(10, 145, 155, 0.22);
    }

    .k-slash-section {
        padding: 0 5%;
        min-height: 80vh;
    }

    .slash-bar {
        height: 120px;
        width: 200vw;
        left: -50vw;
    }

    .k-dog-hero h2 {
        font-size: 15vw;
    }

    .k-dog-hero p {
        font-size: 17.6px;
    }

    .k-footer {
        padding: 80px 5%;
    }

    .k-footer-text {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .k-btn {
        padding: 15px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .k-title {
        font-size: 44.8px;
    }

    .k-hero-caption {
        font-size: 15.2px;
    }

    .k-content-box h2 {
        font-size: 28.8px;
    }
}

/* --- GLOBAL MOBILE RESPONSIVENESS (CONSISTENCY FIX) --- */
@media (max-width: 768px) {

    h1,
    .hero-title,
    .reveal-text,
    .cta-large-text,
    .cta-huge,
    .massive-title,
    .cap-head {
        font-size: clamp(40px, 8vw, 56px) !important;
        line-height: var(--lh-display) !important;
    }

    h2,
    .sec-title,
    .main-title,
    .client-intro-mini h2 {
        font-size: clamp(32px, 6vw, 40px) !important;
        line-height: var(--lh-heading) !important;
    }

    h3,
    .lead-text,
    .card-inner h2,
    .industry-info h3 {
        font-size: clamp(24px, 5vw, 28.8px) !important;
        line-height: var(--lh-subheading) !important;
    }

    p,
    .sub-statement,
    .sub-text,
    .hero-desc,
    .hero-sub {
        font-size: 16px !important;
        line-height: var(--lh-p) !important;
    }

    /* Section Padding Consistency */
    section,
    .section,
    .client-perfect-section,
    .industry-section,
    .simple-trust,
    .services-modern,
    .testimonial-stage,
    .insights-modern,
    .stack-section,
    .final-cta,
    .site-footer-premium,
    .site-footer {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
}
