/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --white: #fafafa;
    --accent: #00ff88;
    --accent-dim: #00cc6a;
    --gray: #6b6b6b;
    --gray-dark: #2a2a2a;
    --spacing: clamp(20px, 5vw, 80px);
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
}

/* === CUSTOM CURSOR === */
.cursor-follower {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

@media (pointer: coarse) {
    .cursor-follower {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/* === NOISE OVERLAY === */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.03;
    z-index: 1000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 24px 0;
    mix-blend-mode: difference;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--spacing);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Unbounded', sans-serif;
}

.logo-mark {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    border: 2px solid var(--white);
    color: var(--white);
}

.divider {
    font-size: 24px;
    color: var(--gray);
    font-weight: 300;
}

.brand-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 48px;
}

.nav-links a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-links a::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    color: var(--accent);
    width: 0%;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.nav-cta {
    position: relative;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.4s;
}

.nav-cta .cta-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.nav-cta:hover {
    color: var(--black);
}

.nav-cta:hover .cta-bg {
    left: 0;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 140px var(--spacing) 80px;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--gray-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--gray-dark) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
}

.spotlight {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    animation: spotlightPulse 8s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.25; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 64px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-accent {
    color: var(--accent);
    font-style: italic;
    margin-left: 80px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 56px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-number {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Unbounded', sans-serif;
    color: var(--accent);
    line-height: 1;
}

.meta-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gray);
    text-transform: uppercase;
}

.meta-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-dark);
}

.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: transparent;
    border: 2px solid var(--white);
    padding: 20px 40px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    margin-bottom: 80px;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.hero-cta:hover::before {
    left: 0;
}

.hero-cta:hover .cta-text {
    color: var(--black);
}

.hero-cta:hover .cta-arrow {
    transform: translateX(8px);
}

.cta-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
    transition: color 0.4s;
}

.cta-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.cta-arrow svg {
    stroke: var(--white);
    transition: stroke 0.4s;
}

.hero-cta:hover .cta-arrow svg {
    stroke: var(--black);
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 16px;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 1px;
    background: var(--accent);
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0%, 100% { left: -30px; }
    50% { left: 100%; }
}

.scroll-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
}

/* === HERO IMAGE === */
.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 2px solid var(--gray-dark);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.1);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
}

.frame-corner.tl {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.tr {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bl {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
}

.frame-corner.br {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.floating-stat {
    position: absolute;
    background: var(--black);
    border: 2px solid var(--accent);
    padding: 20px 28px;
    backdrop-filter: blur(10px);
}

.floating-stat.stat-1 {
    top: -20px;
    left: -40px;
    animation: floatVertical 4s ease-in-out infinite;
}

.floating-stat.stat-2 {
    bottom: -20px;
    right: -40px;
    animation: floatVertical 4s ease-in-out infinite 2s;
}

@keyframes floatVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.stat-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gray);
    text-transform: uppercase;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 80px;
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: clamp(48px, 10vw, 80px);
    }
    
    .title-accent {
        margin-left: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .floating-stat.stat-1,
    .floating-stat.stat-2 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        display: inline-block;
        margin: 20px 10px;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-meta {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .meta-divider {
        display: none;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
    }
    
    .logo-mark {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .brand-name {
        font-size: 14px;
    }
}

/* === HIDE OLD SECTIONS TEMPORARILY === */
.trust-bar, .products, .process, .benefits, .faq, .contact, .footer {
    display: none;
}

/* === ABOUT SECTION === */
.about {
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px var(--spacing);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 48px;
    color: var(--white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
}

.about-text strong {
    color: var(--white);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    border: 1px solid var(--gray-dark);
    padding: 32px;
    transition: border-color 0.3s;
}

.feature-item:hover {
    border-color: var(--accent);
}

.feature-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
}

/* === SUPPLY SECTION === */
.supply {
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px var(--spacing);
}

.supply-header {
    margin-bottom: 80px;
}

.supply-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-align: center;
}

.supply-subtitle {
    font-size: 18px;
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.supply-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-dark);
    border: 2px solid var(--gray-dark);
}

.supply-card {
    background: var(--black);
    padding: 48px 40px;
    position: relative;
    transition: background 0.3s;
}

.supply-card:hover {
    background: var(--gray-dark);
}

.supply-card.featured {
    border: 2px solid var(--accent);
}

.supply-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid var(--accent);
    color: var(--accent);
    margin-bottom: 24px;
}

.supply-card-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.supply-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 32px;
}

.supply-features {
    list-style: none;
    margin-bottom: 32px;
}

.supply-features li {
    font-size: 14px;
    color: var(--gray);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.supply-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.supply-cta {
    width: 100%;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.supply-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

/* === CONTACT SECTION === */
.contact-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px var(--spacing);
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info {
    border: 2px solid var(--gray-dark);
    padding: 48px;
}

.info-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-dark);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 12px;
}

.info-value {
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
}

.contact-form {
    border: 2px solid var(--gray-dark);
    padding: 48px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.form-input,
.form-select,
.form-textarea {
    background: transparent;
    border: 1px solid var(--gray-dark);
    color: var(--white);
    padding: 16px;
    font-size: 15px;
    font-family: 'Space Grotesk', sans-serif;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background: var(--accent);
    border: none;
    color: var(--black);
    padding: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--accent-dim);
    transform: translateY(-2px);
}

/* === FOOTER === */
.footer-minimal {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px var(--spacing);
    border-top: 1px solid var(--gray-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    text-align: center;
    margin-top: 48px;
    font-size: 12px;
    color: var(--gray);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .supply-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}
