:root {
    /* Hero person sizing variables for absolute consistency */
    --hero-person-height: 50vh;
    --hero-person-max-width: 20vw;
    --hero-person-min-width: 150px;
    
    /* Core colors - light theme adaptation */
    --color-primary: #6c2bd9;
    --color-primary-dark: #5925b2;
    --color-secondary: #ff5e5b;
    --color-tertiary: #00d4ff;
    --color-accent: #ff9c00;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6c2bd9 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #ff5e5b 0%, #ff9c00 100%);
    --gradient-tertiary: linear-gradient(135deg, #00d4ff 0%, #00ffc2 100%);
    --gradient-text: linear-gradient(90deg, #6c2bd9, #ff5e5b, #00d4ff);
    
    /* Background - Light Theme with More Contrast */
    --bg-color: #ffffff;
    --bg-color-light: #f7fafc;
    --bg-color-lighter: #edf2f7;
    
    /* Text - Light Theme with More Contrast */
    --text-color: #2d3748;
    --text-color-muted: rgba(45, 55, 72, 0.8);
    --text-color-subtle: rgba(45, 55, 72, 0.6);
    
    /* Borders - Light Theme with More Contrast */
    --border-color: rgba(45, 55, 72, 0.15);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows - Enhanced Contrast */
    --shadow-sm: 0 2px 15px rgba(45, 55, 72, 0.12);
    --shadow-md: 0 4px 25px rgba(45, 55, 72, 0.18);
    --shadow-lg: 0 10px 40px rgba(45, 55, 72, 0.25);
    --shadow-glow: 0 0 25px rgba(108, 43, 217, 0.4);
    
    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    
    /* Sizing */
    --container-max-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(108, 43, 217, 0.05), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    box-sizing: border-box;
}

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

a:hover {
    color: var(--color-secondary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-md);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-color-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 100%;
    animation: gradient-shift 8s ease infinite;
    display: inline-block;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-medium);
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    box-shadow: 0 6px 15px rgba(108, 43, 217, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
}

.btn-secondary:hover {
    box-shadow: 0 6px 15px rgba(255, 94, 91, 0.4);
    transform: translateY(-2px);
    color: white;
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Header and Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-fast);
    box-shadow: 0 2px 20px rgba(45, 55, 72, 0.08);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-highlight {
    color: var(--color-primary);
}

.logo-domain {
    font-size: 1.2rem;
    color: var(--text-color-muted);
    font-weight: 500;
}

.logo-play-triangle {
    margin-right: 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    color: var(--text-color);
    display: inline-block;
    vertical-align: middle;
    transform: translateY(-2px);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-color);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 40vh;
    padding: calc(var(--header-height) + 5vh) 0 8vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Smooth hero scaling */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Images - Bulletproof Identical Sizing */
.hero-person-container {
    position: absolute;
    bottom: 0;
    z-index: 1;
    /* Container just needs height, width can be flexible */
    height: var(--hero-person-height);
    /* No overflow to prevent cutting */
    overflow: visible;
    box-sizing: border-box;
    /* Center the image content */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* Smooth animations */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SIMPLE SOLUTION: Force identical HEIGHT, let width vary naturally */
.hero-person {
    /* Force exact same height for both images */
    height: var(--hero-person-height) !important;
    /* Let width scale naturally to maintain aspect ratio */
    width: auto !important;
    /* Position at bottom */
    object-fit: contain !important;
    object-position: center bottom !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    transform-origin: center bottom !important;
}

/* Positioning */
.hero-person-container.jasen {
    left: 0;
}

.hero-person-container.tony {
    right: 0;
}

/* Hero content centering and constraints */
.hero-content-center {
    position: relative;
    z-index: 2;
    max-width: 50vw;
    min-width: 300px;
    text-align: center;
    margin: 0 auto;
    padding: 0 3vw;
}

/* Animated Cube */
.animated-cube {
    position: relative;
    width: 120px;
    height: 120px;
    perspective: 600px;
    transition: all var(--transition-medium);
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(0) rotateY(0) rotateZ(0);
    animation: cube-rotation 15s infinite linear;
}

.face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fira Code', monospace;
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(108, 43, 217, 0.3);
    border: 2px solid rgba(108, 43, 217, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 25px rgba(108, 43, 217, 0.3) inset;
    border-radius: 16px;
    transition: all var(--transition-fast);
    backface-visibility: visible;
}

.front { transform: rotateY(0deg) translateZ(60px); background: rgba(108, 43, 217, 0.4); }
.back { transform: rotateY(180deg) translateZ(60px); background: rgba(255, 94, 91, 0.4); }
.right { transform: rotateY(90deg) translateZ(60px); background: rgba(0, 212, 255, 0.4); }
.left { transform: rotateY(-90deg) translateZ(60px); background: rgba(255, 156, 0, 0.4); }
.top { transform: rotateX(90deg) translateZ(60px); background: rgba(108, 43, 217, 0.4); }
.bottom { transform: rotateX(-90deg) translateZ(60px); background: rgba(0, 212, 255, 0.4); }

@keyframes cube-rotation {
    0% { transform: rotateX(0) rotateY(0) rotateZ(0); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

.hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 2rem var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.hero-main-text {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.blur-word {
    filter: blur(3px);
    display: inline-block;
}

.hero-subtitle-new {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-color-muted);
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--text-color-muted);
    white-space: normal;
    overflow: visible;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-color-subtle);
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(108, 43, 217, 0.08), transparent 60%);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(26, 32, 44, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(26, 32, 44, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    z-index: -1;
    animation: grid-movement 15s linear infinite;
}

@keyframes grid-movement {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.animated-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.circle-2 {
    width: 250px;
    height: 250px;
    background: var(--color-secondary);
    bottom: 20%;
    left: 10%;
    animation-delay: 5s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: var(--color-tertiary);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

/* Cards and Sections */
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(108, 43, 217, 0.25);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 43, 217, 0.03), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 25px 50px rgba(108, 43, 217, 0.2);
}

/* Booking Section Styling */
.booking-section {
    padding: 2rem;
    background: rgba(108, 43, 217, 0.03);
    border-top: 1px solid rgba(108, 43, 217, 0.15);
    border-bottom: 1px solid rgba(108, 43, 217, 0.15);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.booking-subtitle {
    font-size: 1.2rem;
    color: var(--text-color-muted);
    margin-bottom: 2rem;
}

/* Terminal Component */
.terminal {
    background: rgba(26, 32, 44, 0.95);
    border: 1px solid rgba(26, 32, 44, 0.2);
    border-radius: var(--border-radius-lg);
    font-family: 'Fira Code', monospace;
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: var(--shadow-md);
}

.terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(26, 32, 44, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 var(--space-md);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27ca3f; }

.terminal-content {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.terminal-prompt {
    color: #00d4ff;
}

.terminal-command {
    color: #ffffff;
}

.terminal-output {
    color: #ff9c00;
}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-anim-1 0.5s infinite linear alternate-reverse;
    color: var(--color-secondary);
    z-index: -1;
}

.glitch::after {
    animation: glitch-anim-2 1s infinite linear alternate-reverse;
    color: var(--color-tertiary);
    z-index: -2;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(75px, 9999px, 5px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    25% { clip: rect(14px, 9999px, 79px, 0); }
    30% { clip: rect(1px, 9999px, 66px, 0); }
    35% { clip: rect(86px, 9999px, 30px, 0); }
    40% { clip: rect(23px, 9999px, 98px, 0); }
    45% { clip: rect(85px, 9999px, 82px, 0); }
    50% { clip: rect(66px, 9999px, 33px, 0); }
    55% { clip: rect(79px, 9999px, 70px, 0); }
    60% { clip: rect(29px, 9999px, 78px, 0); }
    65% { clip: rect(80px, 9999px, 21px, 0); }
    70% { clip: rect(93px, 9999px, 85px, 0); }
    75% { clip: rect(61px, 9999px, 11px, 0); }
    80% { clip: rect(40px, 9999px, 69px, 0); }
    85% { clip: rect(2px, 9999px, 65px, 0); }
    90% { clip: rect(86px, 9999px, 98px, 0); }
    95% { clip: rect(34px, 9999px, 24px, 0); }
    100% { clip: rect(81px, 9999px, 72px, 0); }
}

@keyframes glitch-skew {
    2% { transform: skew(0.44deg); }
    4% { transform: skew(0.98deg); }
    60% { transform: skew(0.35deg); }
    100% { transform: skew(0deg); }
}

/* Footer */
.site-footer {
    padding: 2rem 1rem 1rem;
    background: var(--bg-color-light);
    border-top: 1px solid var(--border-color);
    margin-top: var(--space-lg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

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

.footer-info {
    color: var(--text-color-muted);
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    color: var(--text-color-muted);
}

.footer-legal {
    font-size: 0.9rem;
    color: var(--text-color-subtle);
}

.footer-links h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--text-color-muted);
    transition: color var(--transition-fast);
}

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

.footer-social h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-color);
}

.social-icons {
    display: flex;
    gap: var(--space-sm);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
    color: var(--text-color-subtle);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition-fast);
}

.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    transform: translateY(-100%);
    transition: transform var(--transition-medium);
    z-index: 999;
    display: none;
    box-shadow: var(--shadow-md);
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
    padding: var(--space-lg);
}

.mobile-nav li {
    margin-bottom: var(--space-md);
}

/* Hero Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding: 0 var(--space-md);
}

.stat {
    text-align: center;
    padding: var(--space-md);
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid layouts */
.problems-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.roi-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.roi-metric {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.roi-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.roi-label {
    font-size: 0.9rem;
    color: var(--text-color-muted);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.company-logo {
    padding: var(--space-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-color-muted);
    font-weight: 600;
    opacity: 0.8;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Large Screen Optimizations - CSS Variables ensure identical sizing */
@media (min-width: 1440px) {
    :root {
        --hero-person-height: 45vh;
        --hero-person-max-width: 18vw;
    }
    
    .hero-content-center {
        max-width: 45vw;
    }
}

/* Ultra Large Screen Optimizations - CSS Variables ensure identical sizing */
@media (min-width: 2560px) {
    :root {
        --hero-person-height: 40vh;
        --hero-person-max-width: 15vw;
    }
    
    .hero-content-center {
        max-width: 40vw;
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 50px;
        gap: var(--space-lg);
        padding: 0 var(--space-md);
    }
    
    .cube-container {
        position: relative;
        height: 120px;
        margin-bottom: var(--space-lg);
        top: auto;
    }
    
    .terminal {
        font-size: 0.8rem;
        padding: var(--space-md);
        margin: var(--space-md) 0;
        max-width: 100%;
        overflow-x: auto;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        margin-top: var(--space-lg);
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .problems-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    :root {
        --space-lg: 1rem;
        --space-xl: 2rem;
        --container-max-width: 100%;
    }
    
    .container {
        padding: 0 var(--space-md);
        max-width: 100%;
    }
    
    :root {
        --hero-person-height: 40vh;
        --hero-person-max-width: 25vw;
        --hero-person-min-width: 140px;
    }
    
    .hero {
        height: 55vh;
        padding: calc(var(--header-height) + 4vh) 0 8vh;
    }
    
    .hero-content-center {
        max-width: 60vw;
        min-width: 280px;
        padding: 0 2vw;
    }
    
    .hero-grid {
        margin-top: 0;
        padding: 0 var(--space-sm);
        gap: var(--space-md);
    }
    
    .hero-content {
        padding: var(--space-sm);
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        margin-top: var(--space-lg);
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .terminal {
        font-size: 0.7rem;
        padding: var(--space-sm);
        margin: var(--space-sm) 0;
        max-width: 100%;
        overflow-x: auto;
    }
    
    .terminal-content {
        line-height: 1.4;
    }
    
    .terminal-line {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
        margin: var(--space-lg) 0;
        padding: 0;
    }
    
    .stat {
        padding: var(--space-sm);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cube-container {
        height: 100px;
        margin-bottom: var(--space-md);
    }
    
    .animated-cube {
        width: 80px;
        height: 80px;
    }
    
    .face {
        font-size: 1.1rem;
        border-radius: 12px;
    }
    
    .booking-section {
        padding: 2rem 1rem;
    }
    
    .booking-container {
        max-width: 100%;
    }
    
    .booking-title {
        font-size: 2rem;
    }
    
    .booking-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-header {
        padding: 0 var(--space-sm);
    }
    
    .problems-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .roi-results {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 0.75rem;
        --space-lg: 1rem;
        --space-xl: 1.5rem;
    }
    
    :root {
        --hero-person-height: 35vh;
        --hero-person-max-width: 30vw;
        --hero-person-min-width: 120px;
    }
    
    .hero {
        height: 50vh;
        padding: calc(var(--header-height) + 3vh) 0 6vh;
    }
    
    .hero-content-center {
        max-width: 70vw;
        min-width: 250px;
        padding: 0 4vw;
    }
    
    .hero-main-text {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--space-md);
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: var(--space-lg);
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-grid {
        padding: 0;
        gap: var(--space-sm);
    }
    
    .hero-content {
        padding: var(--space-xs);
    }
    
    .terminal {
        font-size: 0.65rem;
        padding: 0.5rem;
        margin: var(--space-sm) 0;
    }
    
    .terminal-content {
        line-height: 1.3;
    }
    
    .cube-container {
        height: 80px;
        margin-bottom: var(--space-sm);
    }
    
    .animated-cube {
        width: 60px;
        height: 60px;
    }
    
    .face {
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
        margin: var(--space-md) 0;
    }
    
    .stat {
        padding: var(--space-xs);
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .btn {
        max-width: 250px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .logos-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .booking-iframe-wrapper {
        padding: 1rem;
    }
}

/* Animation and Scroll Effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Problem Cards */
.problem-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(45, 55, 72, 0.18);
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Solution Banner */
.solution-banner {
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-top: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.solution-banner h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.solution-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Benefits */
.feature-benefit {
    background: rgba(108, 43, 217, 0.1);
    border: 1px solid rgba(108, 43, 217, 0.3);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-description {
    color: var(--text-color-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Value Proposition Section */
.value-prop {
    padding: 6rem 2rem;
}

.value-prop .section-header {
    margin-bottom: 4rem;
}

/* Social Proof */
.social-proof {
    padding: 6rem 2rem;
    text-align: center;
}

/* ROI Section */
.roi-section {
    padding: 6rem 2rem;
}

/* Value Showcase Component */
.value-showcase {
    background: #ffffff;
    border: 1px solid rgba(108, 43, 217, 0.25);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    margin: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(108, 43, 217, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(108, 43, 217, 0.1);
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-text {
    flex: 1;
}

.value-text strong {
    color: var(--text-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

/* Update hero stats for 2 columns */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* About Us Section Responsive Styles */
.about-us-section {
    padding: 3rem 1rem !important;
}

.about-us-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-us-section .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-us-section .section-subtitle {
    font-size: 1rem;
    color: var(--text-color-muted);
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(108, 43, 217, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(108, 43, 217, 0.15);
}

.founder-card img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-primary);
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .founder-card img {
        width: 180px;
        height: 180px;
        margin-bottom: 1rem;
    }
    
    .founder-card h3 {
        font-size: 1.3rem !important;
    }
    
    .founder-card p {
        font-size: 0.9rem !important;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .about-us-section {
        padding: 2rem 0.75rem !important;
    }
    
    .about-us-section .section-title {
        font-size: 1.5rem;
    }
    
    .about-us-section .section-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .founder-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .founder-card img {
        width: 150px;
        height: 150px;
        border-width: 3px;
    }
    
    .founder-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .founder-card p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Featured link button */
    .founder-card a[href*="whop.com"] {
        font-size: 0.8rem !important;
    }
    
    .founder-card a[href*="whop.com"] span {
        font-size: 0.8rem !important;
    }
    
    /* Mission statement on mobile */
    .about-us-section > .container > div:last-child {
        padding: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .about-us-section > .container > div:last-child h3 {
        font-size: 1.3rem !important;
    }
    
    .about-us-section > .container > div:last-child p {
        font-size: 0.95rem !important;
    }
}

/* GHL Booking Widget Integration */
<style>
:root {
    --appointment_widgets-primary-color: #6c2bd9 !important;
    --appointment_widgets-background-color: #ffffff !important;
    --appointment_widgets-text-color: #1a202c !important;
    --appointment_widgets-light-text-color: rgba(26, 32, 44, 0.7) !important;
    --appointment_widgets-border-color: rgba(108, 43, 217, 0.2) !important;
    --appointment_widgets-light-primary-color: rgba(108, 43, 217, 0.1) !important;
}
</style>