@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Manrope:wght@300;400;700&display=swap');

/* ==========================================================================
   CSS VARIABLES & THEME (NEO-BRUTALIST ELEGANCE)
   ========================================================================== */
:root {
    --bg-base: #030303;
    --bg-panel: #0d0d0d;
    --accent-color: #FF3E00;
    /* Blaze Orange */
    --text-main: #F4F4F5;
    --text-muted: #8A8A93;
    --border-hard: rgba(255, 255, 255, 0.15);

    --font-display: 'Oswald', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --nav-height: 90px;
    --transition-snappy: 0.4s cubic-bezier(0.85, 0, 0.15, 1);
    --transition-smooth: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   RESET & GLOBAL
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
}

/* Geometric Grid Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(var(--border-hard) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-hard) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.2;
    pointer-events: none;
    z-index: -2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--border-hard);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}

h1 {
    font-size: clamp(4rem, 12vw, 12rem);
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(3rem, 8vw, 7rem);
}

h3 {
    font-size: clamp(2rem, 4vw, 4rem);
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition-snappy);
    cursor: none;
}

ul {
    list-style: none;
}

/* Custom Rotating Geometric Cursor */
.cursor-square {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
}

.cursor-square.hover {
    width: 80px;
    height: 80px;
    background-color: var(--text-main);
    border-color: var(--text-main);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4%;
}

.py-section {
    padding: 10rem 0;
}

.border-top {
    border-top: 1px solid var(--border-hard);
}

.border-bottom {
    border-bottom: 1px solid var(--border-hard);
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brutalist Button */
.btn-brutal {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--bg-base);
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-snappy);
}

.btn-brutal::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-main);
    z-index: -1;
    transition: var(--transition-snappy);
}

.btn-brutal:hover::after {
    left: 0;
}

.btn-brutal:hover {
    border-color: var(--text-main);
    color: var(--bg-base);
}

/* ==========================================================================
   HEADER (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    border-bottom: 1px solid var(--border-hard);
    background: rgba(3, 3, 3, 0.7);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    transition: var(--transition-snappy);
}

.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
}

.logo img {
    height: 55px;
    display: block;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 4rem;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 1.2rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: 1.5rem;
    cursor: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--nav-height);
    position: relative;
}

.hero-text-wrap {
    overflow: hidden;
}

.hero-title {
    color: var(--text-main);
    margin: 0;
    transform: translateY(100%);
    animation: slideUp 1s 0.2s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-title span {
    color: var(--accent-color);
}

.hero-desc {
    max-width: 600px;
    margin-top: 2rem;
    border-left: 2px solid var(--accent-color);
    padding-left: 2rem;
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
}

/* Marquee Animation */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: var(--text-main);
    color: var(--bg-base);
    padding: 1rem 0;
    margin-top: auto;
    border-top: 1px solid var(--border-hard);
    border-bottom: 1px solid var(--border-hard);
    transform: rotate(-2deg) scale(1.05);
}

.marquee {
    display: flex;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 3rem;
    text-transform: uppercase;
    animation: scrollLeft 20s linear infinite;
}

.marquee span {
    margin-right: 3rem;
}

/* ==========================================================================
   ABOUT / BENTO GRID
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 1px;
    background: var(--border-hard);
    border: 1px solid var(--border-hard);
}

.bento-item {
    background: var(--bg-base);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-snappy);
}

.bento-item:hover {
    background: var(--bg-panel);
}

.bento-item.large {
    grid-column: span 2;
}

.bento-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.bento-item .number {
    font-family: var(--font-display);
    font-size: 5rem;
    opacity: 0.1;
    line-height: 0.8;
    align-self: flex-end;
}

/* ==========================================================================
   SERVICES (ACCORDION HOVER)
   ========================================================================== */
.services-list {
    border-top: 2px solid var(--border-hard);
    margin-top: 4rem;
}

.srv-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 2px solid var(--border-hard);
    transition: var(--transition-snappy);
    position: relative;
    overflow: hidden;
}

.srv-row h3 {
    font-size: 4rem;
    margin: 0;
    transition: transform 0.4s;
    z-index: 2;
    position: relative;
}

.srv-row .srv-tag {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-muted);
    z-index: 2;
}

.srv-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.srv-row:hover::before {
    transform: translateY(0);
}

.srv-row:hover h3,
.srv-row:hover .srv-tag {
    color: var(--bg-base);
    transform: translateX(20px);
}

/* ==========================================================================
   INDUSTRIES (GEOMETRIC CARDS)
   ========================================================================== */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.ind-card {
    border: 1px solid var(--border-hard);
    padding: 3rem;
    background: var(--bg-panel);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.ind-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    transform: rotate(45deg);
    transition: var(--transition-snappy);
}

.ind-card:hover::after {
    transform: rotate(45deg) scale(3);
    opacity: 0.1;
}

.ind-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

/* ==========================================================================
   INTERACTIVE: CALCULATOR (BRUTALIST UI)
   ========================================================================== */
.calc-wrapper {
    background: var(--bg-panel);
    border: 2px solid var(--accent-color);
    padding: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.brutal-slider {
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
    margin: 2rem 0;
}

.brutal-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: var(--border-hard);
}

.brutal-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 30px;
    width: 30px;
    background: var(--accent-color);
    cursor: pointer;
    margin-top: -11px;
    border: 2px solid var(--text-main);
    border-radius: 0;
}

.calc-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.calc-output-box {
    border-left: 4px solid var(--accent-color);
    padding-left: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calc-output-box h4 {
    font-size: 2rem;
    color: var(--text-muted);
}

.calc-output-box .giant-num {
    font-size: 8rem;
    color: var(--text-main);
    font-family: var(--font-display);
    line-height: 1;
    margin: 1rem 0;
}

/* ==========================================================================
   INTERACTIVE: CAMPAIGN REPORTS (SVG ANIMATION)
   ========================================================================== */
.report-dashboard {
    border: 1px solid var(--border-hard);
    background: var(--bg-panel);
    padding: 4rem;
    margin-top: 4rem;
    position: relative;
}

.report-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-hard);
    padding-bottom: 2rem;
    margin-bottom: 4rem;
}

.metric-col h5 {
    color: var(--text-muted);
    font-size: 1rem;
}

.metric-col span {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent-color);
}

.svg-chart {
    width: 100%;
    height: 300px;
    overflow: visible;
}

.chart-line {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 4;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 2s cubic-bezier(0.25, 1, 0.5, 1);
}

.chart-line.draw {
    stroke-dashoffset: 0;
}

/* ==========================================================================
   TESTIMONIALS (DRAGGABLE/SWIPE)
   ========================================================================== */
.testi-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
    cursor: grab;
}

.testi-track::-webkit-scrollbar {
    display: none;
}

.testi-card {
    min-width: 450px;
    border: 1px solid var(--border-hard);
    padding: 4rem;
    background: var(--bg-base);
    position: relative;
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--border-hard);
    line-height: 1;
}

.testi-text {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.client-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* ==========================================================================
   CONTACT FORM / LET'S TALK
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.huge-contact-text {
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.9;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.form-line {
    position: relative;
    margin-bottom: 3rem;
}

.form-line input,
.form-line textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-hard);
    padding: 1rem 0;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.2rem;
    outline: none;
    border-radius: 0;
    transition: border-color 0.3s;
}

.form-line label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    pointer-events: none;
    transition: 0.3s;
}

.form-line input:focus,
.form-line textarea:focus {
    border-bottom-color: var(--accent-color);
}

.form-line input:focus~label,
.form-line input:valid~label,
.form-line textarea:focus~label,
.form-line textarea:valid~label {
    top: -1.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* ==========================================================================
   LIVE CHAT (BRUTALIST WIDGET)
   ========================================================================== */
.brutal-chat {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
}

.chat-toggle-btn {
    width: 70px;
    height: 70px;
    background: var(--text-main);
    border: 2px solid var(--bg-base);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    transition: transform 0.2s;
    box-shadow: 8px 8px 0 var(--accent-color);
}

.chat-toggle-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0 var(--accent-color);
}

.chat-toggle-btn svg {
    width: 35px;
    height: 35px;
    fill: var(--bg-base);
}

.chat-panel {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    height: 500px;
    background: var(--bg-panel);
    border: 2px solid var(--border-hard);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition-snappy);
    box-shadow: 12px 12px 0 var(--accent-color);
}

.chat-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.chat-top {
    background: var(--accent-color);
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-hard);
    display: flex;
    justify-content: space-between;
}

.chat-top h4 {
    color: var(--bg-base);
    margin: 0;
    font-size: 1.2rem;
}

.chat-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--bg-base);
    cursor: none;
    font-family: var(--font-display);
}

.chat-messages {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.msg-bubble {
    background: var(--bg-base);
    border: 1px solid var(--border-hard);
    padding: 1rem;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    width: 85%;
}

.chat-type {
    display: flex;
    border-top: 2px solid var(--border-hard);
}

.chat-type input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1.5rem;
    color: var(--text-main);
    outline: none;
}

.chat-type button {
    padding: 0 1.5rem;
    background: var(--text-main);
    border: none;
    border-left: 2px solid var(--border-hard);
    color: var(--bg-base);
    font-family: var(--font-display);
    text-transform: uppercase;
    cursor: none;
    font-weight: bold;
}

/* ==========================================================================
   FOOTER (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
.site-footer {
    border-top: 1px solid var(--border-hard);
    background: var(--bg-base);
    padding: 6rem 0 2rem;
}

.footer-mega-text {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 18rem);
    color: transparent;
    -webkit-text-stroke: 2px var(--border-hard);
    text-align: center;
    line-height: 0.8;
    margin-bottom: 4rem;
    letter-spacing: -5px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-hard);
    margin-bottom: 2rem;
}

.footer-col .logo {
    margin-bottom: 2rem;
    display: block;
}

.footer-col p {
    max-width: 300px;
}

.footer-col h5 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.page-hero {
    padding: 15rem 0 5rem;
    border-bottom: 1px solid var(--border-hard);
    background: var(--bg-panel);
}

.page-hero h1 {
    margin: 0;
    color: var(--accent-color);
}

.legal-body {
    padding: 8rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-body h2 {
    font-size: 2.5rem;
    margin: 4rem 0 1.5rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
}

.legal-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

. {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: clip-path 1s cubic-bezier(0.25, 1, 0.5, 1);
}

..visible {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .calc-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .bento-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bento-item.large {
        grid-column: span 1;
    }

    .srv-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .calc-wrapper {
        padding: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}