/* ========================
   CSS Variables & Reset
======================== */
:root {
    --color-bg: #050505;
    --color-orange: #FF4500;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    
    --font-heading: 'Oswald', sans-serif;
    --font-pixel: 'VT323', monospace;
    --font-body: 'Inter', sans-serif;
    
    --border-thickness: 3px;
    
    --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Elements */
.grid-bg {
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
}

/* ========================
   Typography
======================== */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 700;
}

.pixel-font {
    font-family: var(--font-pixel);
    letter-spacing: 2px;
}

.text-orange { color: var(--color-orange); }
.text-black { color: #000; }
.text-white { color: #fff; }

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-top: 0.5rem;
}

/* ========================
   Layout Utilities
======================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

/* ========================
   Buttons & Links
======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast), border var(--transition-fast);
    cursor: pointer;
    border: var(--border-thickness) solid transparent;
    letter-spacing: 1px;
}

.btn.lg {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
}

.btn-primary {
    background: var(--color-orange);
    color: #000;
    border-color: var(--color-orange);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-orange);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-text);
}

.btn-outline:hover {
    background: var(--color-text);
    color: #000;
}

/* ========================
   Launch Button
======================== */
.launch-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
    border-radius: 50px;
    padding: 0.6rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    z-index: 1;
    text-decoration: none;
}

.launch-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    z-index: 1;
}

.launch-btn:hover {
    background: var(--color-orange);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    transform: scale(1.05);
}

.launch-btn:hover::before {
    animation: lightSweep 1.5s infinite;
}

@keyframes lightSweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ========================
   Navbar
======================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    color: var(--color-orange);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--color-orange);
    transition: var(--transition-fast);
}

/* ========================
   Hero Section
======================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--color-text);
    margin-bottom: 3rem;
    max-width: 800px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ========================
   Marquee
======================== */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--color-orange);
    color: #000;
    padding: 1.5rem 0;
    display: flex;
    white-space: nowrap;
    border-top: var(--border-thickness) solid #000;
    border-bottom: var(--border-thickness) solid #000;
    position: relative;
    z-index: 10;
}

.marquee-content {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-transform: uppercase;
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    padding: 0 2rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================
   Quote Sections
======================== */
.quote-section {
    padding: 10rem 0;
    text-align: center;
}

.massive-quote {
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 1;
}

/* ========================
   Why Marketing / Brutal Cards
======================== */
.section-header {
    margin-bottom: 4rem;
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.brutal-card {
    background: var(--color-bg);
    border: var(--border-thickness) solid var(--color-text);
    padding: 3rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brutal-card:hover {
    transform: translate(-10px, -10px);
    box-shadow: 10px 10px 0 var(--color-orange);
}

.brutal-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-orange);
}

.brutal-card p {
    font-size: 1.1rem;
    color: var(--color-text);
}

/* ========================
   Playbook Carousel
======================== */
.playbook-carousel {
    padding: 10rem 0;
    overflow: hidden;
}

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

.playbook-info p {
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.carousel-module {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    outline: none;
}

.carousel-module:focus-visible {
    box-shadow: 0 0 0 3px var(--color-orange);
    border-radius: 8px;
}

.carousel-track {
    position: relative;
    height: 400px;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid var(--color-orange);
    border-radius: 8px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    
    /* Animation states */
    opacity: 0;
    transform: scale(0.95) translateX(20px) rotateY(-5deg);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0) rotateY(0deg);
    pointer-events: auto;
    z-index: 2;
}

.carousel-slide.prev {
    transform: scale(0.95) translateX(-20px) rotateY(5deg);
}

.playbook-card h3 {
    font-size: 2.5rem;
    color: var(--color-text);
}

.playbook-card span {
    font-size: 1.5rem;
    color: var(--color-orange);
    align-self: flex-end;
}

/* Controls */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.carousel-btn {
    background: transparent;
    border: 2px solid var(--color-text-muted);
    color: var(--color-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.carousel-btn:hover, .carousel-btn:focus-visible {
    border-color: var(--color-orange);
    color: var(--color-orange);
    outline: none;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-muted);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--color-orange);
    transform: scale(1.3);
}

.dot:hover, .dot:focus-visible {
    background: var(--color-text);
    outline: none;
}

/* ========================
   Why Influencer Section
======================== */
.influencer-section {
    padding: 6rem 0;
}

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

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

.inf-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.inf-block p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ========================
   Our Process (Timeline)
======================== */
.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: var(--border-thickness);
    background: rgba(255,255,255,0.1);
    z-index: 1;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--scroll-progress, 0%);
    background: var(--color-orange);
    transition: height 0.1s;
}

.timeline-item {
    position: relative;
    padding-left: 6rem;
    margin-bottom: 4rem;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 10px;
    top: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-bg);
    border: var(--border-thickness) solid var(--color-text);
    transition: var(--transition-slow);
}

.timeline-item.active .timeline-dot {
    background: var(--color-orange);
    border-color: var(--color-orange);
    box-shadow: 0 0 20px var(--color-orange);
}

.timeline-content h3 {
    font-size: 3rem;
    margin: 0.5rem 0;
}

.timeline-content p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

/* ========================
   Why Adzing Section
======================== */
.why-adzing {
    text-align: center;
}

.adzing-traits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4rem;
}

.adzing-traits h3 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
}

/* ========================
   Contact Section
======================== */
.contact-box {
    text-align: center;
    padding: 6rem 2rem;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ========================
   Footer
======================== */
.footer {
    padding: 4rem 0 2rem;
    border-top: var(--border-thickness) solid var(--color-orange);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo p {
    color: var(--color-text-muted);
    font-family: var(--font-pixel);
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.hover-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    text-decoration: none;
}

.hover-link:hover {
    color: var(--color-orange);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

/* ========================
   Animations
======================== */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-line {
    display: block;
    overflow: hidden;
    padding-bottom: 5px;
}

.reveal-line span {
    display: block;
    transform: translateY(110%);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-line.active span {
    transform: translateY(0);
}

.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.stagger-item {
    transition-delay: calc(var(--stagger-idx, 0) * 0.1s);
}

/* ========================
   Lead Form Styles
======================== */
.lead-form {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

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

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.input-group input,
.input-group select,
.input-group textarea {
    background: transparent;
    border: 2px solid var(--color-text-muted);
    border-radius: 4px;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text);
    transition: var(--transition-fast);
    outline: none;
    -webkit-appearance: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.2);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #444;
}

/* Custom Select Dropdown Arrow */
.input-group select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
}

.input-group select option {
    background: var(--color-bg);
    color: var(--color-text);
}

.form-messages {
    margin-top: 1.5rem;
}

.form-msg {
    padding: 1rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

.form-msg.success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.form-msg.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

.hidden {
    display: none !important;
}

.loader {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================
   Mobile Layout
======================== */
@media (max-width: 992px) {
    .playbook-wrapper { grid-template-columns: 1fr; text-align: center; }
    .scene-3d { height: 400px; }
}

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-fast);
        z-index: 100;
    }
    
    .nav-links.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav-link { font-size: 3rem; }
    .mobile-menu-btn { display: flex; }

    .hero-title { font-size: 4rem; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn { width: 100%; }
    
    .timeline-item { padding-left: 4rem; }
    
    .contact-actions { flex-direction: column; }
    .contact-actions .btn { width: 100%; }
    
    .footer-top { flex-direction: column; text-align: center; }
    .footer-links { flex-direction: column; gap: 1rem; }
}
