@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --color-main: #FF23A6;
    /* Red */
    --color-bg: #F3F3F3;
    /* Light Gray */
    --color-text: #000000;
    /* Black */
    --color-accent: #FF23A6;
    --border-width: 3px;
    --border: var(--border-width) solid var(--color-text);
    /* Black borders */
    --shadow-offset: 6px;
    --shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--color-text);
    --shadow-hover: 2px 2px 0px var(--color-text);
    --font-heading: 'Archivo Black', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

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

::selection {
    background: var(--color-main);
    color: #fff;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-mono);
    line-height: 1.5;
    overflow-x: hidden;
    cursor: crosshair;
}

/* Layout Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    border-left: 1px dashed rgba(0, 0, 0, 0.1);
    border-right: 1px dashed rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 0.9;
}

h1 {
    font-size: clamp(4rem, 15vw, 12rem);
    color: var(--color-text);
    -webkit-text-stroke: 0;
    /* Removed stroke for cleaner light mode look */
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

h1 span {
    color: var(--color-main);
    display: block;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    border-bottom: var(--border);
    display: inline-block;
    padding-right: 2rem;
}

p {
    font-size: 1.1rem;
    max-width: 60ch;
    margin-bottom: 1.5rem;
}

/* Components */
.btn {
    display: inline-block;
    background: var(--color-main);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    padding: 1rem 3rem;
    text-decoration: none;
    text-transform: uppercase;
    border: var(--border);
    box-shadow: var(--shadow);
    transition: all 0.1s ease;
    position: relative;
    border-radius: 50px;
}

.btn:hover {
    box-shadow: var(--shadow-hover);
    transform: translate(4px, 4px);
}

.btn:active {
    box-shadow: 0 0 0;
    transform: translate(6px, 6px);
}

.card {
    border: var(--border);
    padding: 2rem;
    background: #fff;
    /* White cards on light gray bg */
    position: relative;
    transition: all 0.2s ease;
    border-radius: 24px;
}

.card:hover {
    background: var(--color-main);
    color: #fff;
    box-shadow: var(--shadow);
    transform: translate(-4px, -4px);
}

.card:hover h3,
.card:hover p,
.card:hover i {
    color: #fff;
    border-color: #fff;
}



.card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--color-main);
    padding-bottom: 0.5rem;
}

.card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-main);
}

/* Header / Marquee - Marquee Removed */
header {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-main);
    text-decoration: none;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 2rem;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-main);
    transition: width 0.3s;
}

.nav-link:hover::before {
    width: 100%;
}

/* Hero */
.hero {
    padding: 6rem 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-visual {
    border: var(--border);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: repeating-linear-gradient(45deg,
            #fff,
            #fff 10px,
            #e0e0e0 10px,
            #e0e0e0 20px);
    box-shadow: var(--shadow);
}

.glitch-box {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-main);
    text-align: center;
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

/* Features */
.features {
    padding: 6rem 0;
    border-top: var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* Contact Icons */
.contact-icons {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-icon-link {
    font-size: 3rem;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: var(--border);
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 50%;
    /* New Circular Style */
}

.contact-icon-link:hover {
    color: #fff;
    background: var(--color-main);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-hover);
    border-color: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1 {
        font-size: 15vw;
        margin-bottom: 1rem;
    }

    .hero {
        padding: 3rem 0;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 12vw;
    }

    header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-link {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .nav-link {
        margin-left: 0;
    }

    .contact-icons {
        justify-content: flex-start;
    }

    .hero-visual {
        height: 300px;
    }

    .features-grid {
        gap: 2rem;
    }

    .card {
        padding: 1.5rem;
    }
}