/* Investor Relations Page - Apple-Inspired Professional Design */

/* Design Variables - Light-First Apple Aesthetic */
:root {
  /* PRIMARY BRAND - Quantum Cyan adjusted for light backgrounds */
  --primary: #007acc;                    /* Main brand color - darker for contrast */
  --primary-light: #0099ff;              /* Light variant for subtle accents */
  --primary-dark: #005c99;               /* Darker variant for emphasis */
  --primary-hover: #0088e6;              /* Hover state */
  
  /* PRIMARY ALPHA VARIANTS */
  --primary-subtle: rgba(0, 122, 204, 0.06);  /* Very subtle background tint */
  --primary-light-bg: rgba(0, 122, 204, 0.04); /* Light hover backgrounds */
  --primary-medium-bg: rgba(0, 122, 204, 0.08); /* Active backgrounds */
  --primary-strong-bg: rgba(0, 122, 204, 0.12); /* Strong accent backgrounds */
  
  /* BACKGROUND SYSTEM - Apple-inspired whites and grays */
  --bg-primary: #ffffff;                 /* Pure white - main background */
  --bg-secondary: #f5f5f7;               /* Apple's signature off-white */
  --bg-tertiary: #f2f2f7;                /* Slightly cooler off-white */
  --bg-elevated: #fafafa;                /* Cards, modals, elevated surfaces */
  --bg-section: #fbfbfd;                 /* Section backgrounds */
  --bg-accent: #f8f9ff;                  /* Subtle cyan-tinted background */
  
  /* NEUTRAL SCALE - Teenage Engineering inspired precision */
  --neutral-50: #fafafa;                 /* Lightest gray */
  --neutral-100: #f4f4f5;                /* Very light gray */
  --neutral-200: #e4e4e7;                /* Light gray - borders, dividers */
  --neutral-300: #d4d4d8;                /* Medium light gray */
  --neutral-400: #a1a1aa;                /* Medium gray - placeholders */
  --neutral-500: #71717a;                /* Dark gray - secondary text */
  --neutral-600: #52525b;                /* Darker gray - primary text light */
  --neutral-700: #3f3f46;                /* Very dark gray */
  --neutral-800: #27272a;                /* Near black - headings */
  --neutral-900: #18181b;                /* True black - primary text */
  
  /* TEXT COLORS - High contrast for accessibility */
  --text-primary: #1d1d1f;               /* Apple's primary text (near black) */
  --text-secondary: #86868b;             /* Secondary text (medium gray) */
  --text-tertiary: #a1a1a6;              /* Tertiary text (light gray) */
  --text-inverse: #ffffff;               /* White text for dark backgrounds */
  --text-accent: var(--primary);         /* Brand color for links, accents */
  
  /* BORDER SYSTEM */
  --border-light: #e5e5e7;               /* Light borders, dividers */
  --border-medium: #d2d2d7;              /* Medium borders */
  --border-strong: #a1a1aa;              /* Strong borders */
  --border-accent: var(--primary);       /* Brand color borders */
  --border-focus: rgba(0, 122, 204, 0.5); /* Focus ring color */
  
  /* GLASS EFFECTS - Refined for light backgrounds */
  --glass-bg: rgba(255, 255, 255, 0.85); /* White glass background */
  --glass-border: rgba(0, 122, 204, 0.08); /* Subtle cyan glass border */
  --glass-border-hover: rgba(0, 122, 204, 0.16); /* Hover glass border */
  --glass-shadow-light: rgba(0, 0, 0, 0.04); /* Very subtle shadow */
  --glass-shadow-medium: rgba(0, 0, 0, 0.08); /* Medium shadow */
  --glass-shadow-strong: rgba(0, 0, 0, 0.12); /* Strong shadow */
  
  /* INTERACTIVE STATES */
  --hover-bg: rgba(0, 122, 204, 0.04);   /* Subtle hover background */
  --active-bg: rgba(0, 122, 204, 0.08);  /* Active/pressed background */
  --focus-bg: rgba(0, 122, 204, 0.06);   /* Focus background */
  --selected-bg: rgba(0, 122, 204, 0.1); /* Selected state background */
  
  /* TYPOGRAPHY - Apple System Fonts */
  --font-primary: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  --font-mono: "SF Mono", Monaco, "Cascadia Code", "JetBrains Mono", "Fira Code", "Roboto Mono", Consolas, monospace;
  
  /* ANIMATION TIMING */
  --speed-fast: 0.15s;
  --speed-normal: 0.3s;
  --speed-slow: 0.5s;
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* GRADIENTS */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-subtle: linear-gradient(135deg, var(--primary-subtle) 0%, transparent 100%);
  --gradient-glass: linear-gradient(135deg, var(--glass-bg) 0%, rgba(255, 255, 255, 0.7) 100%);
}

/* INVESTOR HERO SECTION - Apple-Inspired Design */
.investor-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

/* Hero Background Elements Container */
.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Subtle Grid Background - Light Theme */
.subtle-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    animation: subtle-pulse 8s ease-in-out infinite alternate;
}

@keyframes subtle-pulse {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.4; transform: scale(1.005); }
}

.light-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(circle at 30% 20%, var(--primary-subtle), transparent 50%),
                      radial-gradient(circle at 70% 60%, var(--primary-light-bg), transparent 50%),
                      radial-gradient(circle at 90% 80%, var(--primary-subtle), transparent 50%);
    opacity: 0.6;
    animation: particle-drift 20s ease-in-out infinite;
}

@keyframes particle-drift {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(10px) translateY(-10px); }
    66% { transform: translateX(-5px) translateY(5px); }
}

.subtle-holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 40%, 
        var(--primary-subtle) 50%, 
        transparent 60%
    );
    animation: gentle-scan 15s ease-in-out infinite;
}

@keyframes gentle-scan {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Data Streams - Light Theme */
.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-streams::before,
.data-streams::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    animation: data-stream-flow 4s ease-in-out infinite;
    opacity: 0.6;
}

.data-streams::before {
    left: 15%;
    animation-delay: 0s;
}

.data-streams::after {
    right: 15%;
    animation-delay: 2s;
}

@keyframes data-stream-flow {
    0% { top: -120px; opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { top: 100%; opacity: 0; }
}

/* Floating Shapes - Light Theme */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shapes::before,
.floating-shapes::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    opacity: 0.2;
    animation: float-shapes 12s ease-in-out infinite;
}

.floating-shapes::before {
    top: 25%;
    left: 8%;
    border-radius: 50%;
    animation-delay: 0s;
}

.floating-shapes::after {
    top: 65%;
    right: 12%;
    transform: rotate(45deg);
    animation-delay: 6s;
}

@keyframes float-shapes {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.4; }
}

/* Hero Container - Apple-Inspired Layout */
.hero-container {
    max-width: 1400px;
    width: 100%;
    padding: var(--space-3xl) var(--space-xl);
    z-index: 10;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: var(--space-4xl);
    align-items: center;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: none;
}

.hero-visual {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Professional Badge - Apple-Inspired Design */
.professional-badge {
    position: relative;
    display: inline-block;
    margin: 0 0 3rem 0;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--speed-normal) var(--ease-in-out);
    overflow: hidden;
    animation: badge-float-in 1s ease-out 0.5s both;
    box-shadow: 0 4px 20px var(--glass-shadow-light);
}

.professional-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px var(--glass-shadow-medium);
    border-color: var(--glass-border-hover);
}

.professional-badge:hover .badge-text {
    color: var(--primary-dark);
    letter-spacing: 0.125em;
}

.badge-text {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.badge-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--primary);
    border-radius: 2rem;
    opacity: 0;
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-float-in {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes badge-pulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Hero Title - Apple Typography System */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    position: relative;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    overflow: hidden;
    text-align: center;
}

.title-line {
    display: block;
    animation: title-slide-in 1s ease-out both;
    position: relative;
}

.title-line:nth-child(1) {
    animation-delay: 0.8s;
    margin-bottom: 0.2rem;
}

.title-line:nth-child(2) {
    animation-delay: 1.2s;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: underline-expand 1s ease-out 1.6s both;
}

@keyframes title-slide-in {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes underline-expand {
    0% { width: 0; }
    100% { width: 120px; }
}

.hero-subtitle {
    margin-bottom: var(--space-4xl);
    animation: subtitle-fade-in 1s ease-out 1.4s both;
    text-align: center;
}

.hero-subtitle p {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.25vw, 1.375rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes subtitle-fade-in {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hero Metrics - Apple-Inspired Cards */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
    animation: metrics-slide-in 1s ease-out 2s both;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.metric-item {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--space-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--speed-normal) var(--ease-in-out);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--glass-shadow-light);
}

.metric-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 35px var(--glass-shadow-medium);
}

.metric-item:hover .metric-value {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.metric-item:hover .metric-label {
    color: var(--text-primary);
    font-weight: 700;
}

.metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-light-bg), transparent);
    transition: left var(--speed-slow) ease;
}

.metric-item:hover::before {
    left: 100%;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
    transition: all var(--speed-normal) var(--ease-in-out);
}

.metric-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
    transition: all var(--speed-normal) var(--ease-in-out);
}

@keyframes metrics-slide-in {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hero Visual - Investment Chart */
.investment-chart {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px var(--glass-shadow-light);
    overflow: hidden;
    padding: 2rem;
    transition: all var(--speed-normal) var(--ease-in-out);
}

.investment-chart:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--glass-shadow-medium);
    border-color: var(--glass-border-hover);
}

.chart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chart-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 650;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.chart-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.chart-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 1.5rem;
    height: 180px;
    position: relative;
    z-index: 2;
}

.chart-bar {
    width: 32px;
    background: var(--gradient-primary);
    border-radius: 6px 6px 0 0;
    transition: all var(--speed-normal) var(--ease-in-out);
    animation: bar-grow 1.2s ease-out both;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-bar::before {
    content: attr(data-value);
    position: absolute;
    top: -1.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.chart-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -1.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.chart-bar[data-height="18"] {
    height: 18%;
    animation-delay: 2.5s;
}

.chart-bar[data-height="35"] {
    height: 35%;
    animation-delay: 2.7s;
}

.chart-bar[data-height="55"] {
    height: 55%;
    animation-delay: 2.9s;
}

.chart-bar[data-height="78"] {
    height: 78%;
    animation-delay: 3.1s;
}

.chart-bar[data-height="100"] {
    height: 100%;
    animation-delay: 3.3s;
}

.chart-bar:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0, 122, 204, 0.4);
}

.chart-bar:hover::before {
    color: var(--primary-dark);
    font-weight: 700;
    transform: scale(1.1);
}

.chart-bar:hover::after {
    color: var(--text-primary);
    font-weight: 600;
}

@keyframes bar-grow {
    0% { height: 0; }
    100% { height: var(--target-height, 60%); }
}

.chart-growth-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.chart-growth-line::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: 1px;
    opacity: 0.4;
    transform: rotate(15deg);
    transform-origin: left center;
}

.chart-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.chart-source {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Hero CTA - Apple-Inspired Button */
.hero-cta {
    animation: cta-fade-in 1s ease-out 2.2s both;
    text-align: center;
}

.hero-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--text-inverse);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.025em;
    border-radius: 1rem;
    transition: all var(--speed-normal) var(--ease-in-out);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 122, 204, 0.2);
}

.hero-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--primary-hover);
    box-shadow: 0 12px 40px rgba(0, 122, 204, 0.35);
    letter-spacing: 0.05em;
}

.hero-cta-button:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 25px rgba(0, 122, 204, 0.25);
}

.button-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    opacity: 0;
    z-index: -1;
    transition: opacity var(--speed-normal) ease;
    filter: blur(4px);
}

.hero-cta-button:hover .button-glow {
    opacity: 0.5;
}

@keyframes cta-fade-in {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Investment Chart - Fixed and cleaned up version - this replaces the duplicate styles below */

/* COMMON SECTION STYLING - Apple Design System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 650;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.015em;
    line-height: 1.15;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* INTRODUCTION SECTION - Light Theme */
.intro-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
    position: relative;
}

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

.intro-content p {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.25vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* INVESTMENT STRATEGY SECTION - Light Theme */
.strategy-section {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
}

.section-intro {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.25vw, 1.25rem);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.strategy-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--speed-normal) var(--ease-in-out);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--glass-shadow-light);
}

.strategy-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 30px var(--glass-shadow-medium);
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--speed-normal) ease;
}

.strategy-card:hover::before {
    transform: scaleX(1);
}

.strategy-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.25;
    text-align: center;
}

.strategy-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

/* MARKET OPPORTUNITY SECTION - Light Theme */
.market-section {
    padding: 8rem 0;
    background: var(--bg-section);
    position: relative;
}

.market-content {
    max-width: 1000px;
    margin: 0 auto;
}

.market-content > p {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.25vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
}

.market-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.market-column h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.market-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.market-column li {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.market-column li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.advantage-highlight {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: 0 4px 20px var(--glass-shadow-light);
}

.advantage-highlight h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.advantage-highlight p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* FINANCIAL APPROACH SECTION - Light Theme */
.financial-section {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
}

.financial-content {
    max-width: 1000px;
    margin: 0 auto;
}

.financial-content > p {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.25vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
}

.financial-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.financial-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--speed-normal) var(--ease-in-out);
    box-shadow: 0 4px 20px var(--glass-shadow-light);
}

.financial-item:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 30px var(--glass-shadow-medium);
    transform: translateY(-3px);
}

.financial-item h3 {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.financial-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.financial-item li {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.financial-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.financial-content > p:last-child {
    text-align: center;
    font-style: italic;
    color: var(--text-primary);
    font-weight: 500;
}

/* STRUCTURE SECTION - Light Theme */
.structure-section {
    padding: 8rem 0;
    background: var(--bg-section);
    position: relative;
}

.structure-content {
    max-width: 1000px;
    margin: 0 auto;
}

.structure-content > p {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.25vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
}

.structure-benefits h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    transition: all var(--speed-normal) var(--ease-in-out);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
    box-shadow: 0 4px 20px var(--glass-shadow-light);
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 30px var(--glass-shadow-medium);
}

/* INVESTMENT TERMS SECTION - Light Theme */
.terms-section {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-content > p {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.25vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.terms-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--speed-normal) var(--ease-in-out);
    box-shadow: 0 4px 20px var(--glass-shadow-light);
}

.terms-item:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 30px var(--glass-shadow-medium);
}

.terms-item h3 {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.terms-item p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

/* GOVERNANCE SECTION - Light Theme */
.governance-section {
    padding: 8rem 0;
    background: var(--bg-section);
    position: relative;
}

.governance-content {
    max-width: 1000px;
    margin: 0 auto;
}

.governance-content > p {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.25vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
}

.governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.governance-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--speed-normal) var(--ease-in-out);
    box-shadow: 0 4px 20px var(--glass-shadow-light);
}

.governance-item:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 30px var(--glass-shadow-medium);
    transform: translateY(-3px);
}

.governance-item h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.governance-item p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

.governance-content > p:last-child {
    text-align: center;
    font-style: italic;
    color: var(--text-primary);
    font-weight: 500;
}

/* NEXT STEPS SECTION - Light Theme */
.next-steps-section {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
}

.next-steps-content {
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps-content > p {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.25vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.next-step-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--speed-normal) var(--ease-in-out);
    box-shadow: 0 4px 20px var(--glass-shadow-light);
}

.next-step-item:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 30px var(--glass-shadow-medium);
}

.next-step-item h3 {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-step-item p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

.closing-statement {
    background: var(--primary-subtle);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: 0 4px 20px var(--glass-shadow-light);
}

.closing-statement p {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

/* CTA SECTION - Light Theme */
.cta-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quantum-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, var(--primary-subtle) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--primary-light-bg) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 5rem 3rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 30px var(--glass-shadow-light);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 650;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.15;
    text-align: center;
}

.cta-content p {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.025em;
    transition: all var(--speed-normal) var(--ease-in-out);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--primary);
    color: var(--text-inverse);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 122, 204, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    background: var(--primary-hover);
    box-shadow: 0 8px 30px rgba(0, 122, 204, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: var(--text-inverse);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 122, 204, 0.2);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .market-details,
    .financial-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .strategy-grid,
    .terms-grid,
    .next-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .governance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .investor-hero {
        min-height: 100vh;
    }
    
    .hero-container {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .cta-content {
        padding: 3rem 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .strategy-card,
    .financial-item,
    .terms-item,
    .next-step-item {
        padding: 1.5rem;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .metric-item {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .hero-cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .investment-chart {
        padding: 1.5rem;
        height: auto;
        min-height: 300px;
    }
    
    .chart-container {
        min-height: 150px;
    }
    
    .chart-bars {
        height: 120px;
        gap: 0.75rem;
    }
    
    .chart-bar {
        width: 20px;
    }
    
    .chart-bar::before {
        font-size: 0.625rem;
        top: -1.25rem;
    }
    
    .chart-bar::after {
        font-size: 0.625rem;
        bottom: -1.25rem;
    }
    
    .chart-title {
        font-size: 1rem;
    }
    
    .chart-subtitle {
        font-size: 0.75rem;
    }
    
    .chart-source {
        font-size: 0.625rem;
    }
    
    /* Ensure mobile font sizes stay above 15px */
    .intro-content p,
    .section-intro,
    .market-content > p,
    .financial-content > p,
    .structure-content > p,
    .terms-content > p,
    .governance-content > p,
    .next-steps-content > p {
        font-size: max(1rem, 15px) !important; /* Minimum 15px */
    }
    
    .strategy-card p,
    .market-column li,
    .advantage-highlight p,
    .financial-item li,
    .benefit-item,
    .terms-item p,
    .governance-item p,
    .next-step-item p {
        font-size: max(1rem, 15px) !important; /* Minimum 15px */
    }
}

@media (max-width: 480px) {
    .intro-section,
    .strategy-section,
    .market-section,
    .financial-section,
    .structure-section,
    .terms-section,
    .governance-section,
    .next-steps-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .hero-container {
        padding: 1rem;
    }
    
    /* Extra small mobile - ensure minimum 15px font size */
    .intro-content p,
    .section-intro,
    .market-content > p,
    .financial-content > p,
    .structure-content > p,
    .terms-content > p,
    .governance-content > p,
    .next-steps-content > p,
    .strategy-card p,
    .market-column li,
    .advantage-highlight p,
    .financial-item li,
    .benefit-item,
    .terms-item p,
    .governance-item p,
    .next-step-item p,
    .closing-statement p,
    .cta-content p {
        font-size: max(1rem, 15px) !important; /* Absolute minimum 15px */
    }
}

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

/* Focus States for Accessibility - Light Theme */
.strategy-card:focus,
.financial-item:focus,
.terms-item:focus,
.governance-item:focus,
.next-step-item:focus,
.cta-button:focus {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}