/* TransformationBuddy Website Styles */

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

/* Base typography and spacing variables that work with theme system */
:root {
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: var(--spacing-lg) 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.header h1 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.header p {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

/* Navigation */
.nav {
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.nav-brand {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: var(--font-size-2xl);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: var(--spacing-xs);
    margin-top: var(--spacing-xl);
}

h3 {
    font-size: var(--font-size-xl);
    color: var(--primary-dark);
    margin-top: var(--spacing-lg);
}

h4 {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

/* Lists */
ul, ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

li {
    margin-bottom: var(--spacing-xs);
    color: var(--text-secondary);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Cards and Sections */
.card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--font-size-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--background);
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

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

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* Legal Document Styles */
.legal-document {
    background: var(--background);
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--spacing-xl);
}

.legal-version {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-top: var(--spacing-md);
}

.legal-effective-date {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-sm);
}

.key-points {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
}

.key-points h3 {
    color: white;
    margin-top: 0;
}

.key-points ul {
    margin: 0;
}

.key-points li {
    color: white;
    margin-bottom: var(--spacing-sm);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .nav-container {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .header h1 {
        font-size: var(--font-size-2xl);
    }
    
    .header p {
        font-size: var(--font-size-base);
    }
    
    h2 {
        font-size: var(--font-size-xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .content-wrapper {
        max-width: none;
        padding: 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --background: #FFFFFF;
        --border: #000000;
    }
}

/* ================================
   Theme System
   ================================ */

/* Light Theme (Default) */
:root {
    /* Brand Colors */
    --primary-color: #6C5CE7;
    --primary-light: #A29BFE;
    --primary-dark: #5F3DC4;
    --secondary-color: #00B894;
    --accent-color: #FDCB6E;
    
    /* Light Theme Colors */
    --background: #FFFFFF;
    --background-secondary: #F8F9FA;
    --surface: #FFFFFF;
    --surface-elevated: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --border: #E2E8F0;
    --border-light: #F7FAFC;
    
    /* Theme-specific gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 50%, #E2E8F0 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    
    /* Shadows */
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-primary: rgba(108, 92, 231, 0.3);
}

/* Dark Theme */
[data-theme="dark"] {
    /* Dark Theme Colors */
    --background: #0F0F0F;
    --background-secondary: #1A1A1A;
    --surface: #1A1A1A;
    --surface-elevated: #2D2D2D;
    --text-primary: #F7FAFC;
    --text-secondary: #A0AEC0;
    --text-muted: #718096;
    --border: #2D3748;
    --border-light: #4A5568;
    
    /* Dark theme gradients */
    --gradient-background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #2D2D2D 100%);
    --gradient-card: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.8) 100%);
    
    /* Enhanced dark shadows for stronger glow in dark mode */
    --shadow-color: rgba(0, 0, 0, 0.7);
    --shadow-primary: rgba(108, 92, 231, 0.6);
}

/* ================================
   Theme Toggle
   ================================ */

.theme-toggle-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
}

.theme-toggle {
    background: var(--surface-elevated);
    border: 2px solid var(--border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 6px 25px var(--shadow-primary);
}

.theme-toggle svg {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.theme-toggle .moon-icon {
    display: block;
}

.theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

/* ================================
   Background Elements
   ================================ */

.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

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

.shape-2 {
    width: 200px;
    height: 200px;
    top: 70%;
    right: -5%;
    animation-delay: -7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 80%;
    animation-delay: -14s;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    bottom: 20%;
    left: 10%;
    animation-delay: -4s;
}

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

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

/* ================================
   Coming Soon Page Styles
   ================================ */

.coming-soon-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: var(--gradient-background);
    color: var(--text-primary);
    font-family: var(--font-family);
    overflow-x: hidden;
    transition: background 0.5s ease, color 0.3s ease;
}

.coming-soon-main {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

.coming-soon-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================
   Logo Section
   ================================ */

.coming-soon-logo {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out;
}

.logo-image {
    /* Responsive sizing: mobile-first approach - maintain aspect ratio */
    width: 120px;
    height: auto;
    max-width: 100%;
    
    /* Enhanced glow effect - balanced middle ground intensity */
    filter: drop-shadow(0 8px 25px rgba(108, 92, 231, 0.35)) 
            drop-shadow(0 4px 15px rgba(108, 92, 231, 0.28))
            drop-shadow(0 0 20px rgba(108, 92, 231, 0.22));
    
    transition: all 0.4s ease;
    animation: logoFloat 6s ease-in-out infinite;
}

/* Responsive scaling for larger screens */
@media (min-width: 640px) {
    .coming-soon-logo {
        margin-top: 4rem;
    }
    
    .logo-image {
        width: 160px;
        height: auto;
    }
}

@media (min-width: 768px) {
    .coming-soon-logo {
        margin-top: 5rem;
    }
    
    .logo-image {
        width: 200px;
        height: auto;
        
        /* Enhanced glow for tablets - balanced middle ground */
        filter: drop-shadow(0 10px 30px rgba(108, 92, 231, 0.38)) 
                drop-shadow(0 5px 18px rgba(108, 92, 231, 0.3))
                drop-shadow(0 0 25px rgba(108, 92, 231, 0.25));
    }
}

@media (min-width: 1024px) {
    .coming-soon-logo {
        margin-top: 6rem;
    }
    
    .logo-image {
        width: 240px;
        height: auto;
        
        /* Professional balanced glow for desktop */
        filter: drop-shadow(0 12px 35px rgba(108, 92, 231, 0.4)) 
                drop-shadow(0 6px 22px rgba(108, 92, 231, 0.32))
                drop-shadow(0 0 30px rgba(108, 92, 231, 0.28));
    }
}

@media (min-width: 1280px) {
    .coming-soon-logo {
        margin-top: 7rem;
    }
    
    .logo-image {
        width: 260px;
        height: auto;
        max-width: 280px; /* Maximum size cap for largest screens */
        
        /* Maintain professional balanced glow at max size */
        filter: drop-shadow(0 12px 35px rgba(108, 92, 231, 0.4)) 
                drop-shadow(0 6px 22px rgba(108, 92, 231, 0.32))
                drop-shadow(0 0 30px rgba(108, 92, 231, 0.28));
    }
}

/* Extra large screens - cap at maximum comfortable size */
@media (min-width: 1920px) {
    .logo-image {
        width: 280px;
        max-width: 280px; /* Hard cap to prevent excessive size on ultra-wide displays */
    }
}

.logo-image:hover {
    transform: scale(1.08) rotate(5deg);
}

/* Enhanced hover effects for different screen sizes */
@media (min-width: 640px) {
    .logo-image:hover {
        transform: scale(1.1) rotate(5deg);
    }
}

@media (min-width: 768px) {
    .logo-image:hover {
        transform: scale(1.12) rotate(5deg);
        /* Enhanced glow on hover for tablets - more visible */
        filter: drop-shadow(0 12px 35px rgba(108, 92, 231, 0.48)) 
                drop-shadow(0 7px 22px rgba(108, 92, 231, 0.38))
                drop-shadow(0 0 30px rgba(108, 92, 231, 0.32));
    }
}

@media (min-width: 1024px) {
    .logo-image:hover {
        transform: scale(1.15) rotate(5deg);
        /* Professional enhanced glow for desktop hover */
        filter: drop-shadow(0 15px 40px rgba(108, 92, 231, 0.52)) 
                drop-shadow(0 8px 25px rgba(108, 92, 231, 0.42))
                drop-shadow(0 0 35px rgba(108, 92, 231, 0.35));
    }
}

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

/* ================================
   Hero Section
   ================================ */

.hero-section {
    text-align: center;
    margin-bottom: 6rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 120px;
    line-height: 1.3;
}

.stat-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    font-style: italic;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
    display: none;
}

@media (min-width: 640px) {
    .stat-divider {
        display: block;
    }
}

/* ================================
   Accountability Partner Section
   ================================ */

.accountability-partner-section {
    margin: 4rem 0 6rem 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.accountability-partner-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2rem;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 25px 50px var(--shadow-primary);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 900px;
    /* Ensure high contrast */
    color: white;
}

.accountability-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: shimmer 6s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.accountability-partner-content {
    position: relative;
    z-index: 2;
}

.accountability-partner-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white !important;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.accountability-partner-message {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: white !important;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    /* Ensure maximum readability */
    opacity: 1;
}

.accountability-partner-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-highlight {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-highlight:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive design for accountability partner section */
@media (max-width: 768px) {
    .accountability-partner-card {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .accountability-partner-stats {
        gap: 1rem;
    }
    
    .stat-highlight {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .accountability-partner-card {
        padding: 2.5rem 1.5rem;
    }
    
    .accountability-partner-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .stat-highlight {
        width: fit-content;
        min-width: 200px;
    }
}

/* High contrast mode support for accountability partner */
@media (prefers-contrast: high) {
    .accountability-partner-card {
        border: 3px solid white;
    }
    
    .accountability-partner-title,
    .accountability-partner-message {
        color: white !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .stat-highlight {
        border: 2px solid white;
        background: rgba(0, 0, 0, 0.3);
    }
}

/* ================================
   Pain Points Section
   ================================ */

.pain-section {
    margin-bottom: 6rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.section-background-text {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
}

.section-background-text b,
.section-background-text strong {
    font-weight: 700;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pain-item {
    background: var(--gradient-card);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pain-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pain-item:hover::before {
    transform: scaleX(1);
}

.pain-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(0.3);
}

.pain-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-style: italic;
}

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

.revelation-card {
    background: var(--gradient-card);
    border: 2px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: var(--text-primary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.revelation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}


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

.revelation-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.revelation-card .revelation-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-secondary) !important;
    line-height: 1.6;
}

.revelation-emphasis {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

/* ================================
   Why Section
   ================================ */

.why-section {
    margin-bottom: 6rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.founder-story {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.founder-quote {
    background: var(--gradient-card);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.founder-quote p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

.founder-quote cite {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 600;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-intro {
    font-size: 1.25rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
}

.why-list {
    display: grid;
    gap: 2rem;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--gradient-card);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.why-point:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px var(--shadow-color);
    border-color: var(--primary-color);
}

.point-marker {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.point-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* ================================
   Vision Section
   ================================ */

.vision-section {
    margin-bottom: 6rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vision-scenarios {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.scenario {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: var(--gradient-card);
    border-radius: 2rem;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.scenario:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.scenario-before,
.scenario-after {
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
}

.scenario-before {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
    border: 2px solid rgba(255, 107, 107, 0.2);
}

.scenario-after {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 184, 148, 0.1));
    border: 2px solid var(--primary-color);
}

.scenario-before h4 {
    color: #ff6b6b;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scenario-after h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scenario-before p {
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.scenario-after p {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.scenario-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@media (max-width: 768px) {
    .scenario {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .scenario-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }
}

/* ================================
   Final CTA Section
   ================================ */

.final-cta-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient-card);
    border-radius: 2rem;
    padding: 4rem;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px var(--shadow-color);
    text-align: center;
}

.cta-emotion {
    margin-bottom: 3rem;
}

.cta-emotion-title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-emotion-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

.cta-commitment {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1.5rem;
    color: white;
}

.cta-commitment h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.commitment-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.cta-commitment .commitment-list li {
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 0;
    opacity: 0.95;
    color: white !important;
}

.cta-action {
    margin-bottom: 2rem;
}

.cta-question {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.btn-cta {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    border-radius: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 15px 35px var(--shadow-primary);
    border: none;
}

.btn-primary::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: left 0.6s ease;
}

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

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px var(--shadow-primary);
    color: white;
    text-decoration: none;
}

.cta-reassurance {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial {
    background: var(--surface-elevated);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.testimonial p {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-style: italic;
    line-height: 1.5;
}

.testimonial cite {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 600;
}

/* ================================
   Footer
   ================================ */

.coming-soon-footer {
    background: var(--surface-elevated);
    border-top: 1px solid var(--border);
    padding: 2rem;
    margin-top: 4rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-main {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

/* ================================
   Animations
   ================================ */

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

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 768px) {
    .theme-toggle-container {
        top: 1rem;
        right: 1rem;
    }
    
    .theme-toggle {
        width: 44px;
        height: 44px;
    }
    
    .coming-soon-container {
        padding: 0 1rem;
    }
    
    .final-cta-content {
        padding: 2rem;
        border-radius: 1.5rem;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-grid,
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        margin-bottom: 1.5rem;
    }
    
    .btn-cta {
        min-width: 280px;
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
    
    .final-cta-content {
        padding: 2.5rem;
    }
    
    .commitment-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .final-cta-content {
        padding: 2rem;
    }
    
    .cta-emotion-title {
        font-size: 1.75rem;
    }
    
    .cta-question {
        font-size: 1.25rem;
    }
    
    .why-item,
    .preview-item {
        padding: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ================================
   Accessibility
   ================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-shape,
    .gradient-orb {
        animation: none;
    }
    
    .logo-image {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .pain-item,
    .why-point,
    .scenario,
    .final-cta-content {
        border: 2px solid var(--text-primary);
    }
    
    .btn-primary {
        border: 2px solid var(--primary-color);
    }
    
    .btn-secondary {
        border: 2px solid var(--text-primary);
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ================================
   Print Styles
   ================================ */

@media print {
    .theme-toggle-container,
    .background-elements {
        display: none;
    }
    
    .coming-soon-body {
        background: white;
        color: black;
    }
    
    .pain-item,
    .why-point,
    .scenario,
    .final-cta-content {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}

/* Change Conclusion Styling */
.change-conclusion {
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.change-conclusion .section-background-text {
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    text-align: left;
}