/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    /* Brand Colors - Extracted from packaging */
    --primary-green: #0B4D2C;
    --dark-green: #083D23;
    --accent-gold: #d7df23; /* Pantone 388 C */
    --light-cream: #F8F6F0;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-dark: #4A4A4A;
    --gray-medium: #808080;
    --gray-light: #E5E5E5;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 77, 44, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 77, 44, 0.12);
    --shadow-lg: 0 8px 32px rgba(11, 77, 44, 0.16);
    --shadow-gold: 0 4px 16px rgba(215, 223, 35, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--white);
    line-height: 1.6;
    background-color: var(--dark-green);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(215, 223, 35, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(215, 223, 35, 0.02) 0%, transparent 50%);
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ===========================
   Utility Classes
   =========================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.highlight {
    color: var(--accent-gold);
    position: relative;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 2.25rem;
    background: var(--accent-gold);
    color: var(--dark-green);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 2px 12px rgba(215, 223, 35, 0.25);
    overflow: hidden;
}

.btn-primary:hover {
    background: #e0e84a;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(215, 223, 35, 0.4);
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-primary i {
    transition: var(--transition-fast);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 77, 44, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(215, 223, 35, 0.2);
    transition: var(--transition-base);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.btn-nav {
    padding: 0.5rem 1.5rem;
    background: var(--accent-gold);
    color: var(--dark-green) !important;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.btn-nav:hover {
    background: #e0e84a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 223, 35, 0.5);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--accent-gold);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--primary-green);
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(215, 223, 35, 0.2);
    z-index: 999;
    flex-direction: column;
    gap: var(--spacing-sm);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu a {
    padding: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: center;
    transition: var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--accent-gold);
}

.btn-mobile {
    padding: var(--spacing-sm);
    background: var(--accent-gold);
    color: var(--dark-green) !important;
    border-radius: var(--radius-sm);
    font-weight: 700;
    margin-top: var(--spacing-sm);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-green) 0%, #05251a 100%);
    opacity: 1;
    z-index: 0;
    overflow: hidden;
}

/* Geographical Map Illustration Layer */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: 
        /* Curved connection paths - subtle arcs simulating global routes */
        /* Left side connections */
        radial-gradient(ellipse 700px 2px at 10% 28%, rgba(215, 223, 35, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 650px 2px at 12% 65%, rgba(215, 223, 35, 0.38) 0%, transparent 100%),
        /* Right side connections */
        radial-gradient(ellipse 750px 2px at 88% 35%, rgba(215, 223, 35, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 700px 2px at 85% 68%, rgba(215, 223, 35, 0.36) 0%, transparent 100%),
        radial-gradient(ellipse 600px 2px at 92% 20%, rgba(215, 223, 35, 0.35) 0%, transparent 100%),
        /* Cross connections - subtle arcs across the center (avoiding text) */
        radial-gradient(ellipse 900px 1.5px at 50% 15%, rgba(215, 223, 35, 0.25) 0%, transparent 100%),
        radial-gradient(ellipse 850px 1.5px at 50% 75%, rgba(215, 223, 35, 0.28) 0%, transparent 100%);
    z-index: 1;
    animation: mapGlow 8s ease-in-out infinite alternate;
}

@keyframes mapGlow {
    0% { opacity: 0.06; }
    100% { opacity: 0.12; }
}

/* Geographic coordinate grid - very subtle */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        linear-gradient(0deg, transparent 49%, rgba(215, 223, 35, 0.2) 49%, rgba(215, 223, 35, 0.2) 51%, transparent 51%),
        linear-gradient(90deg, transparent 49%, rgba(215, 223, 35, 0.2) 49%, rgba(215, 223, 35, 0.2) 51%, transparent 51%);
    background-size: 120px 120px;
    z-index: 0;
}

/* Geographic Location Markers */
.geo-marker {
    position: absolute;
    z-index: 2;
    animation: markerPulse 3s ease-in-out infinite;
}

.marker-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(215, 223, 35, 0.4);
    animation: pulse 2s infinite;
    position: relative;
}

.marker-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--dark-green);
    border-radius: 50%;
}

.marker-label {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-family: var(--font-primary);
    font-weight: 500;
    color: rgba(215, 223, 35, 0.8);
    white-space: nowrap;
    text-align: center;
    letter-spacing: 0.05em;
    opacity: 0.7;
    line-height: 1.4;
}

.marker-coords {
    font-size: 0.55rem;
    font-weight: 300;
    color: rgba(215, 223, 35, 0.5);
    letter-spacing: 0.02em;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(215, 223, 35, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(215, 223, 35, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(215, 223, 35, 0);
    }
}

@keyframes markerPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-md);
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.25rem;
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease;
    opacity: 0.9;
}

.hero-brand-mark {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease 0.1s both;
    opacity: 0.95;
}

.hero-title {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease 0.4s both;
    font-weight: 300;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
    letter-spacing: 0.05em;
    margin-top: var(--spacing-sm);
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.7;
}

/* ===========================
   Single Origin Stamp
   =========================== */
.single-origin-stamp {
    position: absolute;
    bottom: 8%;
    right: 5%;
    z-index: 3;
    animation: stampFadeIn 1s ease 1.5s both, stampFloat 6s ease-in-out infinite 2.5s;
}

.stamp-circle {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(215, 223, 35, 0.4);
    border: 3px solid var(--dark-green);
    transform: rotate(-12deg);
}

.stamp-text-top,
.stamp-text-bottom {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--dark-green);
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.stamp-text-top {
    margin-bottom: -0.1rem;
}

.stamp-marks {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stamp-marks .mark {
    position: absolute;
    width: 2px;
    height: 10px;
    background: var(--dark-green);
    top: 8px;
    left: 50%;
    transform-origin: 50% 62px;
    opacity: 0.6;
}

@keyframes stampFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-12deg);
    }
    60% {
        transform: scale(1.05) rotate(-12deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(-12deg);
    }
}

@keyframes stampFloat {
    0%, 100% {
        transform: translateY(0) rotate(-12deg);
    }
    50% {
        transform: translateY(-10px) rotate(-12deg);
    }
}

/* ===========================
   Section Styles
   =========================== */
section {
    padding: var(--spacing-xl) 0;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===========================
   Mission Section
   =========================== */
.mission {
    background: var(--primary-green);
    width: 100%;
    overflow-x: hidden;
}

.mission-statement {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto var(--spacing-lg);
    padding: 0 var(--spacing-md);
}

.mission-statement h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.mission-tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 600;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    justify-items: center;
    width: 100%;
}

.mission-card {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    border: 1px solid rgba(215, 223, 35, 0.2);
    width: 100%;
    max-width: 400px;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-gold);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.mission-card h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.mission-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================
   Product Pipeline Section
   =========================== */
.product-pipeline {
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
}

.pipeline-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg) auto;
    padding: 0 var(--spacing-md);
}

.pipeline-intro p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.pipeline-card {
    background: rgba(11, 77, 44, 0.3);
    border: 1px solid rgba(215, 223, 35, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pipeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pipeline-card:hover::before {
    opacity: 1;
}

.pipeline-card.active {
    background: rgba(215, 223, 35, 0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(215, 223, 35, 0.2);
}

.pipeline-card.active::before {
    opacity: 1;
}

.pipeline-card.coming-soon {
    opacity: 0.7;
}

.pipeline-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(215, 223, 35, 0.2);
}

.card-status {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.pipeline-card.active .card-status {
    color: var(--accent-gold);
    font-weight: 700;
}

.card-icon-large {
    font-size: 3rem;
    margin: var(--spacing-sm) 0;
    filter: grayscale(0.3);
}

.pipeline-card.coming-soon .card-icon-large {
    filter: grayscale(0.5);
    opacity: 0.8;
}

.pipeline-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
    font-family: var(--font-display);
}

.card-origin {
    font-size: 0.875rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.pipeline-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
}

.pipeline-note {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

/* ===========================
   Product Showcase
   =========================== */
.product-showcase {
    background: var(--dark-green);
    color: var(--white);
    width: 100%;
    overflow-x: hidden;
}

.product-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    align-items: center;
    justify-items: center;
    width: 100%;
}

.product-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: var(--spacing-md);
    overflow: visible;
}

.product-img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 3px solid rgba(215, 223, 35, 0.3);
    /* High resolution display optimization */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    object-fit: contain;
    display: block;
}

.product-img:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
    border-color: var(--accent-gold);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    color: var(--dark-green);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.product-details {
    color: var(--white);
    width: 100%;
    max-width: 600px;
}

.product-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.product-title {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.product-origin {
    font-size: 1.125rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
}

.product-description {
    margin-bottom: var(--spacing-md);
}

.product-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.product-features h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.product-cta {
    margin-top: var(--spacing-md);
}

.product-cta .btn-primary {
    background: var(--accent-gold);
    color: var(--dark-green);
    box-shadow: 0 4px 20px rgba(215, 223, 35, 0.4);
}

.product-cta .btn-primary:hover {
    background: #e0e84a;
    box-shadow: 0 6px 28px rgba(215, 223, 35, 0.6);
}

.availability-note {
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Comparison Section */
.comparison-section {
    background: var(--primary-green);
    padding: var(--spacing-xl) 0;
}

.comparison-table-container {
    overflow-x: auto;
    margin: var(--spacing-lg) 0;
}

.comparison-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.comparison-table thead {
    background: rgba(11, 77, 44, 0.5);
}

.comparison-table th {
    padding: var(--spacing-md);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    text-align: left;
    border-bottom: 2px solid var(--accent-gold);
}

.supersource-col {
    background: rgba(215, 223, 35, 0.1);
}

.typical-col {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table td {
    padding: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.check {
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: bold;
    margin-right: var(--spacing-xs);
}

.cross {
    color: #ff6b6b;
    font-size: 1.25rem;
    font-weight: bold;
    margin-right: var(--spacing-xs);
}

.comparison-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.comparison-tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
}

.comparison-cta .btn-primary {
    background: var(--accent-gold);
    color: var(--dark-green);
}

/* Product Usage Section */
.product-usage {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: rgba(215, 223, 35, 0.1);
    border-radius: var(--radius-md);
    border: 2px solid rgba(215, 223, 35, 0.3);
}

.product-usage h4 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.usage-item {
    text-align: center;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.usage-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.usage-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.usage-item h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.usage-item p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.usage-notes {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(215, 223, 35, 0.3);
}

.taste-note,
.serving-note {
    padding: var(--spacing-sm);
    background: rgba(11, 77, 44, 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.taste-note strong,
.serving-note strong {
    color: var(--accent-gold);
}

/* ===========================
   Founder Story Section
   =========================== */
.founder-story {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.founder-story::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(215, 223, 35, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.founder-text {
    text-align: center;
}

.story-content {
    margin-top: var(--spacing-lg);
    text-align: left;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.story-intro {
    font-size: 1.25rem;
    color: var(--accent-gold);
    font-weight: 500;
    font-style: italic;
}

.story-philosophy {
    background: rgba(215, 223, 35, 0.1);
    padding: var(--spacing-md);
    border-left: 4px solid var(--accent-gold);
    border-radius: var(--radius-sm);
    margin: var(--spacing-lg) 0;
}

.story-mission {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(11, 77, 44, 0.5);
    border-radius: var(--radius-md);
    border: 2px solid rgba(215, 223, 35, 0.3);
}

.story-signature {
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.story-cta-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.founder-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.founder-cta .btn-primary {
    background: var(--accent-gold);
    color: var(--dark-green);
    box-shadow: 0 4px 20px rgba(215, 223, 35, 0.4);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.founder-cta .btn-primary:hover {
    background: #e0e84a;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(215, 223, 35, 0.6);
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    background: var(--dark-green);
    padding: var(--spacing-xl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(215, 223, 35, 0.2);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 16px rgba(215, 223, 35, 0.2);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question i {
    transition: transform var(--transition-base);
    color: var(--accent-gold);
    font-size: 0.875rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--accent-gold);
}

/* ===========================
   Why Section
   =========================== */
.why-section {
    background: var(--primary-green);
    width: 100%;
    overflow-x: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    justify-items: center;
    width: 100%;
}

.why-card {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(215, 223, 35, 0.2);
    transition: var(--transition-base);
    width: 100%;
    max-width: 400px;
}

.why-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.why-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.why-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.why-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================
   Premium Invitation Section
   =========================== */
.invitation-section {
    background: var(--light-cream);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(11, 77, 44, 0.1);
    border-bottom: 1px solid rgba(11, 77, 44, 0.1);
}

.invitation-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-md);
}

.invitation-overline {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-green);
    opacity: 0.7;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.invitation-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--primary-green);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.invitation-subtitle {
    font-size: 1rem;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    line-height: 1.6;
}

.invitation-details {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.detail-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
}

.detail-value {
    font-size: 1.125rem;
    color: var(--primary-green);
    font-weight: 500;
}

.invitation-note {
    font-size: 0.875rem;
    color: var(--gray-dark);
    font-style: italic;
    font-weight: 300;
}

/* ===========================
   Waitlist Section
   =========================== */
.waitlist {
    background: linear-gradient(135deg, #05251a 0%, var(--dark-green) 100%);
    color: var(--white);
    width: 100%;
    overflow-x: hidden;
}

.waitlist-header {
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.waitlist-overline {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.waitlist-title {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.waitlist-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.waitlist-form-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 500;
    color: var(--dark-green);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid rgba(11, 77, 44, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(11, 77, 44, 0.1);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: #f8f6f0;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.checkbox-label:hover {
    border-color: var(--primary-green);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: var(--dark-green);
    font-weight: 500;
}

/* Form Section Divider */
.form-section-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: var(--spacing-md) 0;
    position: relative;
}

.form-section-divider::before,
.form-section-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(11, 77, 44, 0.15);
}

.form-section-divider::before {
    margin-right: 1rem;
}

.form-section-divider::after {
    margin-left: 1rem;
}

.divider-text {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}
}

/* Rating Scale */
.rating-scale {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f6f0;
    border-radius: var(--radius-sm);
}

.rating-scale input[type="radio"] {
    display: none;
}

.rating-label {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-green);
    transition: all var(--transition-fast);
}

.rating-label:hover {
    border-color: var(--primary-green);
    background: rgba(11, 77, 44, 0.05);
}

.rating-scale input[type="radio"]:checked + .rating-label {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(11, 77, 44, 0.3);
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.rating-labels span {
    font-size: 0.75rem;
    color: var(--gray-medium);
    font-style: italic;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: var(--spacing-sm);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-top: var(--spacing-md);
}

.success-message,
.error-message {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    animation: fadeIn 0.5s ease;
}

.success-message {
    background: #d4edda;
    color: #155724;
}

.success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: var(--spacing-sm);
}

.success-message h3 {
    color: #155724;
    margin-bottom: var(--spacing-xs);
}

.error-message {
    background: #f8d7da;
    color: #721c24;
}

.error-icon {
    font-size: 2rem;
    color: #dc3545;
    margin-bottom: var(--spacing-xs);
}

.waitlist-benefits {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-benefits h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    width: 100%;
    overflow-x: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.social-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: var(--spacing-xs);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

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

.legal-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    html {
        font-size: 14px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }
    
    /* Optimize geo markers for mobile - smaller, dots only */
    .geo-marker {
        animation: markerPulse 4s ease-in-out infinite;
    }
    
    .marker-dot {
        width: 8px;
        height: 8px;
    }
    
    .marker-dot::before {
        width: 3px;
        height: 3px;
    }
    
    .marker-label {
        display: none; /* Hide labels on tablet for cleaner view */
    }
    
    /* Adjust stamp size for tablet */
    .single-origin-stamp {
        bottom: 5%;
        right: 3%;
    }
    
    .stamp-circle {
        width: 110px;
        height: 110px;
    }
    
    .stamp-text-top,
    .stamp-text-bottom {
        font-size: 1.2rem;
    }
    
    .stamp-marks .mark {
        height: 8px;
        transform-origin: 50% 47px;
    }
    
    .hero-stats {
        gap: var(--spacing-md);
    }
    
    .product-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    
    .product-image {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .product-details {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .pipeline-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    /* Make geo markers even more subtle on mobile */
    .geo-marker {
        opacity: 0.7;
    }
    
    .marker-dot {
        width: 6px;
        height: 6px;
    }
    
    .marker-dot::before {
        width: 2px;
        height: 2px;
    }
    
    /* Further reduce map path visibility on small screens */
    .hero-background::before {
        opacity: 0.04;
    }
    
    .pipeline-intro p {
        font-size: 1.05rem;
    }
    
    .card-icon-large {
        font-size: 2.5rem;
    }
    
    /* Smaller stamp on mobile */
    .single-origin-stamp {
        bottom: 3%;
        right: 3%;
    }
    
    .stamp-circle {
        width: 90px;
        height: 90px;
        border: 2px solid var(--dark-green);
    }
    
    .stamp-text-top,
    .stamp-text-bottom {
        font-size: 1rem;
    }
    
    .stamp-marks .mark {
        height: 6px;
        width: 1.5px;
        transform-origin: 50% 38px;
    }
    
    .product-img {
        max-width: 100%;
        max-height: 500px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        flex-direction: column;
    }
    
    .checkbox-label {
        width: 100%;
    }
    
    .rating-scale {
        gap: 0.25rem;
        padding: 0.75rem;
    }
    
    .rating-label {
        padding: 0.5rem 0.25rem;
        font-size: 0.875rem;
    }
    
    .form-section-divider::before,
    .form-section-divider::after {
        margin: 0 0.5rem;
    }
    
    .divider-text {
        font-size: 0.75rem;
    }
    
    /* New sections mobile responsive */
    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .usage-icon {
        font-size: 2rem;
    }
    
    .usage-item h5 {
        font-size: 0.875rem;
    }
    
    .usage-item p {
        font-size: 0.75rem;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-sm);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-story {
        padding: var(--spacing-lg) 0;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .story-intro {
        font-size: 1.125rem;
    }
    
    .story-mission {
        font-size: 1.125rem;
        padding: var(--spacing-md);
    }
    
    .story-cta-text {
        font-size: 1.5rem;
    }
    
    .social-proof-text {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* ===========================
   Additional Visual Enhancements
   =========================== */
.section-header {
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(215, 223, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(215, 223, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Decorative pattern for sections */
.mission::before,
.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(215, 223, 35, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(215, 223, 35, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.mission,
.why-section {
    position: relative;
}

.mission > .container,
.why-section > .container {
    position: relative;
    z-index: 1;
}

/* Enhanced button effect */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
}

.btn-primary:hover::before {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

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

/* ===========================
   Print Styles
   =========================== */
@media print {
    .navbar,
    .mobile-menu,
    .scroll-indicator,
    .waitlist,
    .footer {
        display: none;
    }
}
