/*
Theme Name: VeronaLabs
Theme URI: https://veronalabs.com
Author: VeronaLabs
Author URI: https://veronalabs.com
Description: Official VeronaLabs landing page theme
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: veronalabs
*/

/* Local Fonts */
@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/bebas-neue-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/ibm-plex-mono-400.woff2') format('woff2');
}

@font-face {
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/ibm-plex-mono-500.woff2') format('woff2');
}

@font-face {
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/ibm-plex-mono-600.woff2') format('woff2');
}

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

:root {
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #F5F5F0;
    --black: #0A0A0A;
    --gray-900: #1A1A1A;
    --gray-600: #666666;
    --gray-400: #999999;
    --gray-200: #E5E5E5;
    --gray-100: #F0F0F0;
    --accent: #0055FF;
}

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

body {
    font-family: 'IBM Plex Mono', monospace;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 15px;
}

/* Typography */
.font-display {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Utility */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 32px 0;
    z-index: 100;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.05em;
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.6;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.hero-content {
    width: 100%;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gray-400);
}

.hero-title {
    font-size: clamp(80px, 18vw, 220px);
    color: var(--black);
    margin-bottom: 24px;
}

.hero-title-outline {
    font-size: clamp(80px, 18vw, 220px);
    color: transparent;
    -webkit-text-stroke: 2px var(--black);
    margin-bottom: 48px;
}

.hero-desc {
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 400;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    padding: 20px 40px;
    border: 2px solid var(--black);
    transition: all 0.3s ease;
}

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

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(6px);
}

/* About Section */
.about {
    padding: 160px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

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

.about-title {
    font-size: clamp(56px, 7vw, 96px);
    color: var(--black);
    margin-bottom: 32px;
}

.about-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.9;
    max-width: 480px;
    letter-spacing: -0.01em;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.stat-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.stat-card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 6vw, 80px);
    line-height: 1;
    color: var(--black);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    letter-spacing: 0.05em;
}

/* Products Section */
.products {
    padding: 160px 0;
    background: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 32px;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(56px, 7vw, 96px);
    color: var(--black);
}

.section-desc {
    font-size: 14px;
    color: var(--gray-600);
    max-width: 380px;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.product-card {
    padding: 48px;
    background: var(--off-white);
    border: 1px solid transparent;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    transform: translateY(-8px);
    box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.1);
}

/* Featured product - spans full width */
.product-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 64px;
    background: var(--black);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-card.featured:hover {
    background: var(--gray-900);
    border-color: transparent;
    box-shadow: 0 48px 80px -24px rgba(0, 0, 0, 0.3);
}

.product-card.featured .product-number {
    font-size: clamp(150px, 20vw, 280px);
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -20px;
    right: -20px;
}

.product-card.featured .product-content {
    position: relative;
    z-index: 1;
}

.product-card.featured .product-name {
    font-size: clamp(48px, 5vw, 72px);
    color: var(--white);
    margin-bottom: 12px;
}

.product-card.featured .product-tagline {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 32px;
}

.product-card.featured .product-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.product-card.featured .product-stats-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 64px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card.featured .product-stat-number {
    font-size: clamp(80px, 10vw, 140px);
    color: var(--white);
    line-height: 1;
}

.product-card.featured .product-stat-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 32px;
}

.product-card.featured .product-link {
    color: var(--white);
    font-size: 16px;
}

.product-card.featured .product-link:hover {
    color: var(--accent);
}

.product-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 100px;
    line-height: 1;
    color: var(--gray-100);
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.product-card:hover .product-number {
    color: var(--gray-200);
}

.product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.02em;
    color: var(--black);
    margin-bottom: 8px;
}

.product-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.product-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
    flex-grow: 1;
    letter-spacing: -0.01em;
}

.product-stats {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.product-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--black);
}

.product-stat-label {
    font-size: 14px;
    color: var(--gray-400);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-link:hover {
    gap: 20px;
}

.product-link svg {
    width: 20px;
    height: 20px;
}

/* WSMS Card - Special styling with brand icon */
.product-card.wsms {
    position: relative;
    overflow: hidden;
}

/* Gray logo - MASSIVE, fills the card as bold graphic element */
.product-card.wsms::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 280px;
    height: 390px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 26 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 9.53752V17.7335L18.2101 8.17764V0L0 9.53752Z' fill='%23F0F0F0'/%3E%3Cpath d='M0 20.729V28.9067L26 15.2711V7.09351L0 20.729Z' fill='%23F0F0F0'/%3E%3Cpath d='M25.9972 18.2664V26.3521L7.80734 35.9999L7.78711 27.7304L25.9972 18.2664Z' fill='%23F0F0F0'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Orange logo - fades in on hover */
.product-card.wsms::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 280px;
    height: 390px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 26 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 9.53752V17.7335L18.2101 8.17764V0L0 9.53752Z' fill='%23F5A574'/%3E%3Cpath d='M0 20.729V28.9067L26 15.2711V7.09351L0 20.729Z' fill='%23F5A574'/%3E%3Cpath d='M25.9972 18.2664V26.3521L7.80734 35.9999L7.78711 27.7304L25.9972 18.2664Z' fill='%23F5A574'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card.wsms:hover::before {
    opacity: 0;
}

.product-card.wsms:hover::after {
    opacity: 0.18;
}

.product-card.wsms:hover {
    border-color: #F5A574;
}

.product-card.wsms .product-number,
.product-card.wsms .product-name,
.product-card.wsms .product-tagline,
.product-card.wsms .product-desc,
.product-card.wsms .product-stats,
.product-card.wsms .product-link {
    position: relative;
    z-index: 1;
}

.product-card.wsms:hover .product-tagline {
    color: #E07A3A;
}

.product-card.wsms:hover .product-link {
    color: #E07A3A;
}

/* WP Statistics Card - Purple brand color on hover */
.product-card.featured:hover {
    border-color: #7C3AED;
}

.product-card.featured:hover .product-tagline {
    color: #A78BFA;
}

.product-card.featured:hover .product-link {
    color: #A78BFA;
}

/* WP Slimstat Card - Red brand color on hover */
.product-card.slimstat:hover {
    border-color: #F87171;
}

.product-card.slimstat:hover .product-tagline {
    color: #DC2626;
}

.product-card.slimstat:hover .product-link {
    color: #DC2626;
}

/* CTA Section */
.cta {
    padding: 200px 0;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(150px, 30vw, 400px);
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
}

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

.cta-title {
    font-size: clamp(48px, 10vw, 140px);
    color: var(--white);
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: clamp(48px, 10vw, 140px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    margin-bottom: 48px;
}

.cta-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 460px;
    margin: 0 auto 48px;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: var(--white);
    color: var(--black);
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    padding: 64px 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.6;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* Page Content (Privacy Policy, Terms, etc.) */
.page-content {
    padding: 160px 0;
    min-height: calc(100vh - 200px);
}

.page-content .container {
    max-width: 800px;
}

.page-title {
    font-size: clamp(48px, 8vw, 80px);
    color: var(--black);
    margin-bottom: 48px;
}

.page-body {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.9;
}

.page-body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--black);
    margin-top: 48px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.page-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-top: 24px;
    margin-bottom: 12px;
}

.page-body p {
    margin-bottom: 20px;
}

.page-body ul,
.page-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.page-body li {
    margin-bottom: 8px;
}

.page-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.3s ease;
}

.page-body a:hover {
    opacity: 0.7;
}

.page-body strong {
    color: var(--black);
    font-weight: 600;
}

.page-body blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: var(--gray-600);
}

/* Large Screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }

    .hero-title,
    .hero-title-outline {
        font-size: 260px;
    }

    .hero-desc {
        font-size: 20px;
        max-width: 640px;
    }

    .about-title,
    .section-title {
        font-size: 120px;
    }

    .about-grid {
        gap: 160px;
    }

    .stats-grid {
        gap: 64px;
    }

    .stat-number {
        font-size: 96px;
    }

    .products-grid {
        gap: 32px;
    }

    .product-card {
        padding: 64px;
    }

    .product-card.featured {
        padding: 80px;
        gap: 80px;
    }

    .product-card.featured .product-name {
        font-size: 88px;
    }

    .product-card.featured .product-stat-number {
        font-size: 160px;
    }

    .cta-title,
    .cta-subtitle {
        font-size: 180px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }

    .hero-title,
    .hero-title-outline {
        font-size: 300px;
    }

    .about-title,
    .section-title {
        font-size: 140px;
    }

    .product-number {
        font-size: 120px;
    }

    .product-name {
        font-size: 40px;
    }

    .cta-title,
    .cta-subtitle {
        font-size: 220px;
    }

    /* Scale WSMS logo for large screens */
    .product-card.wsms::before,
    .product-card.wsms::after {
        width: 340px;
        height: 475px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2200px;
    }

    html {
        font-size: 18px;
    }

    .hero-title,
    .hero-title-outline {
        font-size: 380px;
    }

    .hero-desc {
        font-size: 22px;
        max-width: 720px;
    }

    .about-title,
    .section-title {
        font-size: 180px;
    }

    .stat-number {
        font-size: 120px;
    }

    .product-card {
        padding: 80px;
    }

    .product-card.featured {
        padding: 100px;
    }

    .product-card.featured .product-name {
        font-size: 110px;
    }

    .product-card.featured .product-stat-number {
        font-size: 200px;
    }

    .product-number {
        font-size: 140px;
    }

    .product-name {
        font-size: 48px;
    }

    .cta-title,
    .cta-subtitle {
        font-size: 280px;
    }

    /* Scale WSMS logo for 4K */
    .product-card.wsms::before,
    .product-card.wsms::after {
        width: 400px;
        height: 560px;
    }
}

/* Consent Banner */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.consent-banner.visible {
    transform: translateY(0);
}

.consent-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.consent-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.consent-link {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-link:hover {
    opacity: 0.8;
}

.consent-buttons {
    display: flex;
    gap: 12px;
}

.consent-btn {
    padding: 12px 24px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consent-btn-primary {
    background: var(--white);
    color: var(--black);
}

.consent-btn-primary:hover {
    background: var(--gray-200);
}

.consent-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.consent-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
    .consent-content {
        flex-direction: column;
        text-align: center;
    }

    .consent-buttons {
        width: 100%;
    }

    .consent-btn {
        flex: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .product-card.featured {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px;
    }

    .product-card.featured .product-stats-side {
        padding-left: 0;
        padding-top: 40px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 32px;
    }

    .product-card.featured .product-stat-label {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }

    .hero-title,
    .hero-title-outline {
        font-size: clamp(48px, 14vw, 100px);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured .product-name {
        font-size: 40px;
    }

    .product-card.featured .product-stat-number {
        font-size: 64px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta {
        padding: 120px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }
}
