/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Touch-friendly improvements */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Prevent text size adjustment on iOS */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Better touch targets */
a, button, input, select, textarea {
    min-height: 44px;
    min-width: 44px;
}

/* Smooth scrolling and better mobile performance */
* {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-gradient: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #F7DC6F 100%);
    --secondary-gradient: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #FFD700 100%);
    --accent-gradient: linear-gradient(135deg, #DAA520 0%, #D4AF37 100%);
    --glass-bg: rgba(0, 0, 0, 0.4);
    --glass-border: rgba(212, 175, 55, 0.4);
    --text-primary: #D4AF37;
    --text-secondary: rgba(212, 175, 55, 0.9);
    --text-muted: rgba(212, 175, 55, 0.7);
    --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-heavy: 0 16px 64px rgba(0, 0, 0, 0.8);
    --luxury-black: #0a0a0a;
    --deep-black: #000000;
    --pure-gold: #D4AF37;
    --rich-gold: #B8860B;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--luxury-black) 50%, #1a1a1a 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    z-index: -1;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
    backdrop-filter: blur(15px);
    border-radius: 50%;
    animation: float 20s infinite linear;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 70%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: -15s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 40%;
    left: 50%;
    animation-delay: -8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    box-shadow: var(--shadow-light), inset 0 1px 0 rgba(255, 215, 0, 0.2);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    border-radius: 25px;
    z-index: -1;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy), inset 0 1px 0 rgba(212, 175, 55, 0.5);
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(0, 0, 0, 0.5);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 20px;
    z-index: 1000;
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--text-primary);
    background: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
}

.hero-text-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-video {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.hero-video-element {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--deep-black);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-primary.large {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--text-primary);
}

/* New Sections */

/* Wellness Opportunity Grid */
.wellness-opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.opportunity-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.opportunity-item:hover {
    transform: translateY(-5px);
    border-color: var(--text-primary);
    background: rgba(0, 0, 0, 0.4);
}

.opportunity-icon {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.opportunity-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.opportunity-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Market Stats Bar */
.market-stats-bar {
    display: flex;
    justify-content: space-around;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.market-stat-item {
    text-align: center;
}

.market-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.market-stat-item .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--text-primary);
    box-shadow: var(--shadow-heavy);
}

.portfolio-card.coming-soon {
    border: 2px dashed rgba(212, 175, 55, 0.5);
}

.portfolio-image {
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.coming-soon-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
    font-size: 4rem;
    color: var(--text-primary);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--text-primary);
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* How It Works Grid */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.works-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.works-item:hover {
    transform: translateY(-5px);
    border-color: var(--text-primary);
    background: rgba(0, 0, 0, 0.4);
}

.works-icon {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.works-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.works-item p {
    color: var(--text-secondary);
}

.mechanism-description {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.mechanism-description p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-style: italic;
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--text-primary);
    background: rgba(0, 0, 0, 0.4);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.trust-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.trust-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: var(--text-primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: var(--shadow-heavy);
}

.team-member:hover::before {
    opacity: 1;
}

.team-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 11, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.team-member:hover .photo-placeholder {
    border-color: var(--text-primary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(184, 134, 11, 0.2));
    transform: scale(1.05);
}

.photo-placeholder i {
    font-size: 3rem;
    color: var(--text-primary);
}

.team-info h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-info h4 {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.team-instagram:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.team-instagram i {
    font-size: 1.1rem;
    color: #E4405F;
}

.team-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(184, 134, 11, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 2rem;
}

.team-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.team-cta button {
    padding: 1rem 2rem;
}

/* Early Access Section */
.early-access-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.early-access-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

.benefit-item span {
    color: var(--text-secondary);
    font-weight: 600;
}

.urgency-ticker {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 100, 0, 0.1));
    border: 1px solid rgba(255, 100, 0, 0.3);
    border-radius: 15px;
    display: inline-block;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #FFD700;
    font-weight: 600;
    font-size: 1.1rem;
}

.ticker-content i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Final CTA Section */
.final-cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.disclaimer {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.disclaimer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 600px;
    width: 90%;
    min-height: auto;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

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

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #FFD700;
}

.modal-content h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--text-primary);
    min-width: 30px;
}

.contact-method h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--text-secondary);
}

/* Section Styles */
.section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 4rem;
}

.footer-content .logo {
    margin-bottom: 1rem;
}

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

/* Enhanced Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 15px;
    }

    .header {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .wellness-opportunity-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .how-it-works-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        max-width: 100%;
    }

    .header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo i {
        font-size: 1.8rem;
    }

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

    nav a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .hero {
        padding: 1.5rem 0;
    }

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

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-video {
        order: -1;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-video-element {
        height: 300px;
        border-radius: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

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

    .opportunity-item {
        text-align: center;
        padding: 2rem 1.5rem;
    }

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

    .portfolio-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .works-item {
        text-align: center;
        padding: 2rem 1.5rem;
    }

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

    .trust-item {
        text-align: center;
        padding: 2rem 1.5rem;
    }

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

    .team-member {
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

    .market-stats-bar {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .market-stat-item {
        padding: 1.5rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .early-access-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .glass-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .header {
        padding: 1rem;
        gap: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    nav {
        gap: 0.5rem;
    }

    nav a {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-video-element {
        height: 250px;
        border-radius: 15px;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .glass-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }

    .opportunity-item, .works-item, .trust-item {
        padding: 1.5rem 1rem;
    }

    .opportunity-item h3, .works-item h3, .trust-item h3 {
        font-size: 1.3rem;
    }

    .opportunity-item p, .works-item p, .trust-item p {
        font-size: 0.95rem;
    }

    .market-stat-item {
        padding: 1rem;
    }

    .market-stat-item .stat-number {
        font-size: 1.8rem;
    }

    .portfolio-content {
        padding: 1.5rem 1rem;
    }

    .portfolio-content h3 {
        font-size: 1.3rem;
    }

    .team-member {
        padding: 1.5rem 1rem;
    }

    .team-info h3 {
        font-size: 1.3rem;
    }

    .team-info h4 {
        font-size: 1rem;
    }

    .team-info p {
        font-size: 0.9rem;
    }

    .btn-primary, .btn-secondary {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
    }

    .btn-primary.large, .btn-secondary.large {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        max-width: 95%;
        border-radius: 15px;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .glass-card {
        padding: 1rem 0.8rem;
    }

    .opportunity-item, .works-item, .trust-item {
        padding: 1rem 0.8rem;
    }

    .btn-primary, .btn-secondary {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    nav a {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Additional mobile improvements */
img, video {
    max-width: 100%;
    height: auto;
}

/* Better focus states for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--text-primary);
    outline-offset: 2px;
}

/* Improve performance on mobile */
.hero-video-element,
.portfolio-image img {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

/* Additional mobile layout fixes */
.container, .glass-card, .opportunity-item, .portfolio-card, .works-item, .trust-item, .team-member {
    min-width: 0; /* Prevent flex/grid items from overflowing */
}

/* Better touch feedback */
.btn-primary:active,
.btn-secondary:active,
.portfolio-card:active,
.opportunity-item:active,
.works-item:active,
.trust-item:active,
.team-member:active,
.contact-method:active {
    transform: translateY(1px);
}

/* Improve text readability */
@media (max-width: 480px) {
    body {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    input, textarea, select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
} 