/* ====== UNIFIED SECTION HEADERS/SUBHEADERS ====== */
/* Platform Offerings */
.platform-offerings-section {
  padding: 4rem 0;
}

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

.platform-offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.offering-card {
  background: rgba(23, 23, 23, 0.6);
  border: 1px solid rgba(55, 55, 60, 0.4);
  border-radius: 12px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.offering-image {
  width: 100%;
  height: 260px;
  background: rgba(40, 40, 45, 0.5);
  border-bottom: 1px solid rgba(55, 55, 60, 0.35);
  position: relative;
  overflow: hidden;
}

.offering-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offering-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  justify-content: flex-start;
}

.offering-icon {
  width: 1.2rem;
  height: 1.2rem;
  color: rgba(74, 222, 128, 0.9);
  display: none !important;
}

/* Subtle spark animation for AI */
.offering-icon-ai { width: 1.2rem; height: 1.2rem; filter: drop-shadow(0 0 2px rgba(74, 222, 128, 0.25)); display: none !important; }

@keyframes sparkPulse {
  0%, 100% { opacity: 0.85; filter: drop-shadow(0 0 0 rgba(74, 222, 128, 0)); }
  50% { opacity: 1; filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.35)); }
}

.offering-title,
.offering-title .offering-link {
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 0.35rem 0;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Ensure SVG scales to wrapper size for consistent alignment */
.offering-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.offering-link {
  color: inherit;
  text-decoration: none;
}

.offering-link:hover { text-decoration: underline; }

.offering-description {
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.offering-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto; /* push specs to the bottom */
}

.spec-chip {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(70, 70, 80, 0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.4);
}

.offering-actions { display: none !important; }

.offering-cta {
  font-size: 0.95rem;
  color: #4ade80;
  text-decoration: none;
  background: transparent;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.6);
  transition: all 0.2s ease;
}

.offering-cta:hover { background: rgba(74,222,128,0.08); color:#6ee7b7; box-shadow:0 6px 18px rgba(74,222,128,0.15); }

.offering-card:hover {
  transform: translateY(-3px);
  border-color: rgba(75, 75, 85, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Remove decorative overlays by default for clean images */
.offering-image::before,
.offering-image::after {
  content: none;
}

/* Image placeholders per card (replace with your assets) */
[data-offering="data-platform"] .offering-image {
  background-image: url('/static/assets/images/Front Page Background 1.jpg');
  background-size: cover;
  background-position: center;
}

[data-offering="enterprise-data"] .offering-image {
  background-image: url('/static/assets/images/Front Page Background 2.jpg');
  background-size: cover;
  background-position: center;
}

[data-offering="ai"] .offering-image {
  background-image: url('/static/assets/images/Front Page Background 10.jpg');
  background-size: cover;
  background-position: center;
}

/* No overlay image for AI card */
[data-offering="ai"] .offering-image::before { content: none; }

[data-offering="ai"] .offering-image::after {
  content: none;
}

/* Small logo inside spec chips */
.inline-chip-logo {
  height: 12px;
  width: 12px;
  margin-left: 6px;
  vertical-align: -2px;
}

@media (max-width: 1200px) { .platform-offerings-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 640px) {
  .platform-offerings-grid { grid-template-columns: 1fr; }
  .offering-image { height: 200px; }
}
/* Apply consistent, all-caps, gradient headings and tight spacing like final CTA */
.fiscal-section-label,
.process-main-title,
.fiscal-global-title,
.fiscal-core-title,
.fiscal-value-title {
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 0.25em;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 0.5rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fiscal-cta-subheader,
.process-subtitle,
.fiscal-section-description,
.fiscal-global-description,
.fiscal-core-subtitle,
.fiscal-value-subtitle {
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
  margin: 0.75rem auto 0;
  text-align: center;
  max-width: 700px;
}
.subscription-popup-container .subscription-button {
    background: transparent;
    border: 1px solid rgba(74, 222, 128, 0.5);
    color: #ffffff;
    padding: 0.9rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.subscription-popup-container .subscription-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(74, 222, 128, 0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.subscription-popup-container .subscription-button:hover {
    border-color: #4ade80;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.subscription-popup-container .subscription-button:hover::before {
    left: 100%;
}
/* Elite Professional Design System - Paradox Intelligence */

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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    cursor: default;
    position: relative;
}

/* Global ambient effects matching homepage */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(74, 222, 128, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.fiscal-page-container {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}



/* Enhanced Hero Section - Elite Professional Design */
.fiscal-hero-section {
    height: 100vh;
    background: #000000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    border-top: 1px solid rgba(74, 222, 128, 0.1);
}

/* Removed fiscal-hero-particles - using homepage particle system instead */

.fiscal-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
    background: transparent;
    border-radius: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Enhanced Typography Hierarchy */
.fiscal-hero-title {
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title-main {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 100;
    color: #ffffff;
    line-height: 1.1;
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero-subtitle-accent {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto;
    letter-spacing: 0.1em;
}

.fiscal-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Minimal Trust Indicators */
.trust-indicators-hero {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0 4rem;
    flex-wrap: wrap;
}

.trust-badge-hero {
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(74, 222, 128, 0.9);
    letter-spacing: 0.1em;
    padding: 0.8rem 1.5rem;
    position: relative;
    text-transform: uppercase;
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.trust-badge-hero:hover {
    border-color: rgba(74, 222, 128, 0.6);
    background: rgba(74, 222, 128, 0.05);
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.1);
    transform: translateY(-2px);
}

/* Professional Search Platform */
.professional-search-platform {
    margin: 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Container */
.search-container {
    margin: 3rem 0;
}

/* Core Capabilities */
.core-capabilities {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    padding: 2rem 0;
    flex-wrap: wrap;
}

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

.capability-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Search Examples */
.search-examples {
    text-align: center;
    margin-top: 3rem;
}

.example-queries {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.query-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 400;
    letter-spacing: 0.025em;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.query-btn:hover {
    border-color: rgba(74, 222, 128, 0.4);
    color: rgba(0, 0, 0, 0.9);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

/* Clean Professional Search Styles */
.professional-search-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.search-input-wrapper.focused,
.search-input-wrapper:hover {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.data-type-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 1.25rem;
}

.data-type-icon {
    color: #4ade80;
    display: flex;
    align-items: center;
}

.data-type-label {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.data-type-main {
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1;
}

.data-type-sub {
    font-weight: 500;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
}

.search-input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 1.25rem 0.75rem;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
    width: 100%;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-input:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.clear-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.clear-button:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.search-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: scale(1.05);
}

.search-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.search-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.cta-text {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.cta-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: default;
    transition: all 0.2s ease;
    font-weight: 500;
}

.feature-tag:hover {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-indicators-hero {
        gap: 2rem;
        margin: 2rem 0 3rem;
    }
    
    .core-capabilities {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .example-queries {
        gap: 1rem;
    }
    
    .query-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-credentials {
        gap: 2rem;
    }
    
    .data-type-indicator {
        display: none;
    }
}

/* Enhanced CTA Buttons */
.fiscal-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 4rem 0 3rem;
    flex-wrap: wrap;
}

/* Button styles moved to shared/styles/related-datasets.css */

/* Minimal Credentials */
.hero-credentials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

.credential-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    color: #4ade80;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .fiscal-hero-section {
        padding: 1.5rem;
    }
    
    .fiscal-hero-content {
        padding: 2rem 0;
    }
    
    .trust-indicators-hero {
        gap: 1.5rem;
        margin: 2rem 0 3rem;
    }
    
    .trust-badge-hero {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .hero-search-section {
        padding: 2rem 1.5rem;
        margin: 2.5rem 0;
    }
    
    .fiscal-hero-buttons {
        gap: 1rem;
        margin: 3rem 0 2rem;
    }
    
    /* Responsive button styles moved to shared/styles/related-datasets.css */
    
    .hero-credentials {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .data-type-indicator {
        padding: 0 1rem;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-indicators-hero {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .fiscal-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Responsive button styles moved to shared/styles/related-datasets.css */
    
    .hero-credentials {
        flex-direction: column;
        gap: 1rem;
    }
    
    .credentials-separator {
        display: none;
    }
    
    .data-type-indicator {
        display: none;
    }
    
    .hero-search-section {
        padding: 1.5rem 1rem;
    }
    
    .search-input {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .example-tags {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Research Flow Section */
.fiscal-research-flow {
    padding: 6rem 2rem;
    background: #000000;
    text-align: center;
    border-top: 1px solid rgba(74, 222, 128, 0.1);
    position: relative;
}

.fiscal-section-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Section Headers - Elite Sophisticated Style */
.fiscal-section-label {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 100;
    margin-bottom: 3rem;
    letter-spacing: 0.15em;
    text-align: center;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Section Headers on Light Backgrounds */
.fiscal-research-flow .fiscal-section-label,
.fiscal-try-section .fiscal-section-label,
.fiscal-efficiency-section .fiscal-section-label,
.fiscal-clients-section .fiscal-section-label,
.fiscal-value-props .fiscal-section-label,
.fiscal-final-cta .fiscal-section-label {
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Headers on Dark Backgrounds */
.fiscal-features-section .fiscal-section-label,
.fiscal-core-features .fiscal-section-label,
.fiscal-testimonials .fiscal-section-label,
.fiscal-products-section .fiscal-section-label,
.fiscal-global-section .fiscal-section-label,
.fiscal-use-cases-section .fiscal-section-label {
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fiscal-app-mockup {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fiscal-dashboard-image {
        width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    margin: 0 auto;
}

/* Features Section */
.fiscal-features-section {
    padding: 6rem 2rem;
    background: #000000;
    border-top: 1px solid rgba(74, 222, 128, 0.1);
    position: relative;
}

.fiscal-features-section .fiscal-section-label {
    color: #ffffff; /* Light text for dark background */
}

.fiscal-features-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.fiscal-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.9;
}

.fiscal-feature-card:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.fiscal-feature-reverse {
    direction: rtl;
}

.fiscal-feature-reverse > * {
    direction: ltr;
}

.fiscal-feature-content {
    max-width: 500px;
}

.fiscal-feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(74, 222, 128, 0.05);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fiscal-feature-badge:hover {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.6);
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.1);
    transform: translateY(-2px);
}

.fiscal-feature-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
    /* Dark background styling */
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fiscal-feature-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    /* Dark background styling */
    color: rgba(255, 255, 255, 0.8);
}

/* ===== BUTTON STYLES ===== */

/* Feature CTA Buttons - for dark backgrounds */
.fiscal-feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.fiscal-feature-cta:hover {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(74, 222, 128, 0.1) 100%);
    border-color: rgba(74, 222, 128, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.2);
    color: #ffffff;
    text-decoration: none;
}

/* Secondary Button Style for light backgrounds */
.fiscal-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #1e293b;
}

.fiscal-btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(74, 222, 128, 0.4);
    color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* Button overrides for dark backgrounds */
.fiscal-features-section .fiscal-feature-cta,
.fiscal-testimonials .fiscal-feature-cta,
.fiscal-data-essence .fiscal-feature-cta {
    /* Uses default dark background styles */
}

/* Button overrides for light backgrounds */
.fiscal-research-flow .fiscal-feature-cta,
.fiscal-try-section .fiscal-feature-cta,
.fiscal-efficiency-section .fiscal-feature-cta,
.fiscal-value-props .fiscal-feature-cta,
.fiscal-final-cta .fiscal-feature-cta {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #1e293b;
}

.fiscal-research-flow .fiscal-feature-cta:hover,
.fiscal-try-section .fiscal-feature-cta:hover,
.fiscal-efficiency-section .fiscal-feature-cta:hover,
.fiscal-value-props .fiscal-feature-cta:hover,
.fiscal-final-cta .fiscal-feature-cta:hover {
    background: rgba(74, 222, 128, 0.2);
    border-color: rgba(74, 222, 128, 0.5);
    color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.2);
    text-decoration: none;
}

/* Tab Buttons - minimal clean styling */
.fiscal-tab-button {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
}

.fiscal-tab-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
    transition: width 0.3s ease;
}

.fiscal-tab-button:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.fiscal-tab-button:hover::after {
    width: 60%;
}

.fiscal-tab-button.active {
    color: #ffffff;
    font-weight: 600;
}

.fiscal-tab-button.active::after {
    width: 80%;
}

/* Dot separator between use-case tab buttons without affecting underline (::after) */
.fiscal-tabs-header .fiscal-tab-button + .fiscal-tab-button::before {
    content: '';
    position: absolute;
    left: -0.25rem; /* center in the middle of the 0.5rem gap */
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5.5px;
    height: 5.5px;
    border-radius: 50%;
    background: #4ade80;
    pointer-events: none;
}

@media (max-width: 640px) {
    .fiscal-tabs-header .fiscal-tab-button + .fiscal-tab-button::before {
        width: 6px;
        height: 6px;
        left: -0.25rem; /* keep centered relative to the fixed 0.5rem gap */
    }
}

/* Example Query Buttons - dark theme styling */
.fiscal-example-query {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.fiscal-example-query:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(74, 222, 128, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.2);
}

.fiscal-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Try It Section */
.fiscal-try-section {
    padding: 6rem 2rem;
    background: #000000;
    text-align: center;
    position: relative;
}

/* Core Features Section - Dark background override */
.fiscal-core-features .fiscal-section-label {
    color: #ffffff;
}

/* Testimonials Section - Dark background override */
.fiscal-testimonials .fiscal-section-label {
    color: #ffffff;
}

/* Products Section - Dark background override */
.fiscal-products-section .fiscal-section-label {
    color: #ffffff;
}

/* Global Section - Dark background override */
.fiscal-global-section .fiscal-section-label {
    color: #ffffff;
}

.fiscal-try-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 100;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.2;
    /* Light background styling */
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fiscal-try-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    /* Light background styling */
    color: rgba(0, 0, 0, 0.7);
}

.fiscal-global-description {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.6;
    /* Dark background styling */
    color: rgba(255, 255, 255, 0.8);
}

.fiscal-core-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    /* Dark background styling */
    color: rgba(255, 255, 255, 0.8);
}

.fiscal-value-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    /* Light background styling */
    color: rgba(0, 0, 0, 0.7);
}

/* Keyword Visualization Container */
#keyword-visualization-container {
    position: relative;
    overflow: hidden;
    }
    
#keyword-visualization-container .keyword-visualization {
    width: 100%;
    height: 100%;
    }
    
#keyword-visualization-container .keyword-web {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Ensure visualization elements are styled properly within the try section */
#keyword-visualization-container .company-node {
    position: absolute;
    background: rgba(74, 222, 128, 0.1);
    border: 2px solid rgba(74, 222, 128, 0.4);
    color: rgba(255, 255, 255, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
}

#keyword-visualization-container .company-node:hover {
    background: rgba(74, 222, 128, 0.2);
    border-color: rgba(74, 222, 128, 0.6);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.3);
}

#keyword-visualization-container .keyword-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#keyword-visualization-container .keyword-node:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4ade80;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

#keyword-visualization-container .keyword-node.highlight {
    background: rgba(74, 222, 128, 0.2);
    border-color: #4ade80;
    color: #ffffff;
    animation: pulse 2s ease-in-out;
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.3);
}

#keyword-visualization-container .keyword-node.highlight-down {
    background: rgba(248, 113, 113, 0.2);
    border-color: #f87171;
    color: #ffffff;
    animation: pulse 2s ease-in-out;
    box-shadow: 0 6px 20px rgba(248, 113, 113, 0.3);
}

#keyword-visualization-container .connector-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    transform-origin: left center;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

#keyword-visualization-container .connector-line.highlighted {
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
    height: 2px;
}

#keyword-visualization-container .trend-display {
    position: absolute;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: #000000 !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

#keyword-visualization-container .trend-display.visible {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4) !important;
    background-color: #000000 !important;
    border: 2px solid rgba(74, 222, 128, 0.3) !important;
}

.fiscal-try-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* fiscal-example-query styles already defined above */

/* Global Section */
.fiscal-global-section {
    padding: 6rem 2rem;
    background: #000000;
    border-top: 1px solid rgba(74, 222, 128, 0.1);
    position: relative;
}

.fiscal-global-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fiscal-global-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 100;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.2;
    /* Dark background styling */
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fiscal-global-description {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.fiscal-global-cta {
    display: inline-flex;
    align-items: center;
    color: #4ade80;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

.fiscal-global-cta:hover {
    color: #22c55e;
    transform: translateX(4px);
}

.fiscal-data-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

.fiscal-data-box {
    height: 120px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.fiscal-data-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.fiscal-data-box-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('/src/assets/images/Front Page Background 1.jpg');
}

.fiscal-data-box-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('/src/assets/images/Front Page Background 3.jpg');
}

.fiscal-data-box-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('/src/assets/images/Front Page Background 2.jpg');
}

.fiscal-data-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    text-align: left;
}

.fiscal-data-number {
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: #4ade80;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.fiscal-data-label {
    font-weight: 600;
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

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

/* Efficiency Section */
.fiscal-efficiency-section {
    padding: 6rem 2rem;
    background: #000000;
    border-top: 1px solid rgba(74, 222, 128, 0.1);
    position: relative;
}

.fiscal-efficiency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.fiscal-efficiency-item {
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.fiscal-efficiency-item:hover {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.05);
    transform: translateY(-4px);
}

/* Removed header element targeting to keep headers untouched */

.fiscal-efficiency-item p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
    /* Light background styling */
    color: rgba(0, 0, 0, 0.7);
}

/* Core Features Section */
.fiscal-core-features {
    padding: 6rem 2rem;
    background: #0a0a0a; /* Dark background */
    text-align: center;
}

.fiscal-core-header {
    margin-bottom: 4rem;
}

.fiscal-core-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 100;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.2;
    /* Dark background styling */
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fiscal-core-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.fiscal-core-item {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.fiscal-core-item:hover {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.05);
    transform: translateY(-2px);
}

/* Removed header element targeting to keep headers untouched */

.fiscal-core-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Clients Section */
.fiscal-clients-section {
    padding: 6rem 2rem;
    background: #000000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-top: 1px solid rgba(74, 222, 128, 0.1);
    position: relative;
}

.fiscal-clients-section .fiscal-section-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.fiscal-clients-header {
    margin: 0;
}

.fiscal-clients-count {
    font-size: 1.125rem;
    margin: 0;
    text-align: center;
    width: 100%;
    font-weight: 300;
    letter-spacing: 0.02em;
    /* Light background styling */
    color: rgba(0, 0, 0, 0.7);
}

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

.fiscal-client-logo {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: rgba(0, 0, 0, 0.6); /* Dark text for light background */
    font-weight: 600;
    transition: all 0.3s ease;
}

.fiscal-client-logo:hover {
    background: rgba(74, 222, 128, 0.05);
    border-color: #4ade80;
    color: #4ade80;
}

.fiscal-client-placeholder {
    height: 60px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Testimonials Section */
.fiscal-testimonials {
    padding: 6rem 2rem;
    background: transparent;
}

.fiscal-testimonials-title {
    text-align: center;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 100;
    margin-bottom: 4rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
    /* Dark background styling */
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
    
.fiscal-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
    
.fiscal-testimonial-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.fiscal-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.02) 0%, rgba(74, 222, 128, 0.01) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}
    
.fiscal-testimonial-card:hover {
    border-color: rgba(74, 222, 128, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.fiscal-testimonial-card:hover::before {
    opacity: 1;
}

.fiscal-testimonial-logo {
    display: inline-block;
    font-size: 0.75rem;
    color: #4ade80;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.6rem 1.2rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
    
.fiscal-testimonial-quote {
    font-size: clamp(1.125rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 2.5rem 0;
    line-height: 1.7;
    letter-spacing: 0.02em;
    position: relative;
}

.fiscal-testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-size: 4rem;
    color: rgba(74, 222, 128, 0.2);
    font-family: serif;
    line-height: 1;
}
    
.fiscal-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
    
.fiscal-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
    border: 2px solid rgba(74, 222, 128, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.fiscal-testimonial-card:hover .fiscal-author-avatar {
    border-color: rgba(74, 222, 128, 0.4);
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, rgba(74, 222, 128, 0.08) 100%);
    transform: scale(1.05);
}

.fiscal-author-avatar svg {
    width: 28px;
    height: 28px;
    opacity: 0.8;
}

.fiscal-author-name {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.fiscal-author-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Value Props Section */
.fiscal-value-props {
    padding: 6rem 2rem;
    background: #000000;
    border-top: 1px solid rgba(74, 222, 128, 0.1);
    position: relative;
}

.fiscal-value-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 100;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.2;
    /* Light background styling */
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fiscal-value-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    /* Light background styling */
    color: rgba(0, 0, 0, 0.7);
}

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

.fiscal-value-item {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fiscal-value-item:hover {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.05);
    transform: translateY(-2px);
}

/* Removed header element targeting to keep headers untouched */
    
.fiscal-value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
    /* Light background styling */
    color: rgba(0, 0, 0, 0.7);
}
    
/* Products Section */
.fiscal-products-section {
    padding: 6rem 2rem;
    background: #0a0a0a; /* Dark background */
}

.fiscal-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.fiscal-product-card {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fiscal-product-card:hover {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.05);
    transform: translateY(-4px);
    text-decoration: none;
}

.fiscal-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.fiscal-product-content {
    padding: 2rem;
}

/* Removed header element targeting to keep headers untouched */

.fiscal-product-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.fiscal-additional-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.fiscal-link-card {
    display: block;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fiscal-link-card:hover {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.05);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Removed header element targeting to keep headers untouched */

.fiscal-link-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Final CTA Section - Elite Professional Design */
.fiscal-final-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(74, 222, 128, 0.1);
}

.fiscal-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(74, 222, 128, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.fiscal-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Removed header element targeting to keep headers untouched */

.fiscal-cta-subheader {
    text-align: center;
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-weight: 100;
    margin-bottom: 4rem;
    line-height: 1.2;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    font-family: inherit;
}

.fiscal-cta-content p {
    font-size: clamp(1.125rem, 2.5vw, 1.4rem);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.025em;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.fiscal-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Elite CTA Button Styling */
.fiscal-final-cta .fiscal-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(74, 222, 128, 0.45);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    cursor: pointer;
}

.fiscal-final-cta .fiscal-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(74, 222, 128, 0.12) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.fiscal-final-cta .fiscal-btn-primary:hover {
    border-color: rgba(74, 222, 128, 0.75);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

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

.fiscal-final-cta .fiscal-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    cursor: pointer;
}

.fiscal-final-cta .fiscal-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.fiscal-final-cta .fiscal-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
}

.fiscal-final-cta .fiscal-btn-secondary:hover::before { left: 100%; }

/* Elite Contact Information */
.fiscal-final-cta .fiscal-cta-content > p:last-child {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    margin-bottom: 0;
    margin-top: 2rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
}

/* Responsive Design for Final CTA */
@media (max-width: 768px) {
    .fiscal-final-cta {
        padding: 6rem 1rem;
    }
    
    .fiscal-cta-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .fiscal-final-cta .fiscal-btn-primary,
    .fiscal-final-cta .fiscal-btn-secondary {
        min-width: 250px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .fiscal-final-cta .fiscal-btn-primary,
    .fiscal-final-cta .fiscal-btn-secondary {
        min-width: 100%;
        max-width: 300px;
    }
}

/* Footer Section - Use shared footer styles */

/* Responsive Design */
@media (max-width: 768px) {
    .fiscal-hero-buttons {
    flex-direction: column;
    align-items: center;
}

    .fiscal-feature-cta,
    .fiscal-example-query,
    .query-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .fiscal-tab-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }

    .fiscal-feature-card {
        grid-template-columns: 1fr;
    gap: 2rem;
        text-align: center;
}

    .fiscal-feature-reverse {
        direction: ltr;
}

    .fiscal-global-content {
        grid-template-columns: 1fr;
        gap: 2rem;
}

    .fiscal-efficiency-grid {
        grid-template-columns: 1fr;
}

    .fiscal-core-grid {
        grid-template-columns: 1fr;
}

    .fiscal-clients-grid {
        grid-template-columns: repeat(2, 1fr);
}

    .fiscal-try-examples {
        text-align: left;
}



    .fiscal-hero-section {
        height: 100vh;
        min-height: 500px;
        padding: 1rem;
        padding-top: 4rem;
}

    .fiscal-hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
}

    .fiscal-hero-subtitle {
        font-size: clamp(1.125rem, 4vw, 1.25rem);
}

    .fiscal-hero-search {
        max-width: 100%;
    }

    .fiscal-search-container {
        border-radius: 12px;
    }

    .fiscal-search-input {
        font-size: 0.9rem;
        padding: 0.875rem 0.5rem;
    }

    .fiscal-search-suggestions {
        gap: 0.5rem;
    }

    .fiscal-suggestion-chip {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .fiscal-section-content {
        padding: 0 1rem;
    }

    .fiscal-try-title,
    .fiscal-global-title,
    .fiscal-core-title {
        font-size: 2rem;
        font-weight: 100;
        letter-spacing: 0.1em;
    }
    
    .fiscal-feature-title {
        font-size: 1.5rem;
}
}

@media (max-width: 480px) {
    .fiscal-hero-section {
        height: 100vh;
        padding: 0.5rem;
    }

    .fiscal-hero-title {
        font-size: 2.5rem;
    }

    .fiscal-hero-subtitle {
        font-size: 1.125rem;
    }

    .fiscal-clients-grid {
        grid-template-columns: 1fr;
    }

    .fiscal-feature-cta,
    .fiscal-example-query,
    .query-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .fiscal-tab-button {
        padding: 0.65rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .fiscal-hero-buttons .fiscal-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile-first approach for better performance */
/* ... existing CSS ... */

/* Professional Content Section Styles */
.professional-content-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
}

/* Removed header element targeting to keep headers untouched */

.professional-content-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: clamp(0.95rem, 2vw, 1rem);
    font-weight: 400;
}

.professional-content-section article {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.professional-content-section article:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.professional-content-section article header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.professional-content-section .data-source-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.professional-content-section .data-source-item:hover {
    background: rgba(255, 255, 255, 0.05);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 8px;
}

.professional-content-section .data-source-item:last-child {
    border-bottom: none;
}

.professional-content-section .data-source-title {
    font-weight: 300;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    /* Dark background styling */
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.professional-content-section .data-source-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.professional-stats-container {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.professional-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.professional-stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.professional-stat-item:hover {
    transform: translateY(-4px);
}

.professional-stat-number {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 0.5rem;
    line-height: 1;
    font-family: system-ui, -apple-system, sans-serif;
}

.professional-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

.professional-stat-sublabel {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Enhanced gradient accent */
.gradient-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 2px;
}

/* Responsive Design for Professional Content */
@media (max-width: 1024px) {
    .professional-content-section {
        padding: 6rem 1.5rem;
    }
    
    .professional-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .professional-content-section article {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .professional-content-section {
        padding: 4rem 1.5rem;
    }
    
    .professional-content-section div[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
        gap: 3rem !important;
    }
    
    .professional-content-section article {
        margin-bottom: 3rem;
        padding: 2rem;
    }
    
    .professional-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .professional-stats-container {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .professional-content-section {
        padding: 3rem 1rem;
    }
    
    .professional-content-section article {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .professional-content-section article header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .professional-stats-container {
        padding: 2rem 1.5rem;
    }
    
    .professional-stat-item {
        padding: 1rem;
    }
}

/* Enhanced Professional Content Section */
.professional-content-section {
    background: #000000;
    padding: 8rem 2rem;
    position: relative;
    border-top: 1px solid rgba(74, 222, 128, 0.1);
}

/* ====== NEW: INSTITUTIONAL USE CASES SECTION ====== */

/* Main Use Cases Section */
.fiscal-use-cases-section {
    background: #000000;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(74, 222, 128, 0.1);
}

/* Ensure section header/subheader sit above tabs container glass panel */
.fiscal-use-cases-section .fiscal-section-label,
.fiscal-use-cases-section .fiscal-cta-subheader {
    position: relative;
    z-index: 3;
    display: block;
    opacity: 1;
}

/* Dedicated header container for use-cases to avoid overlap with tabs */
.fiscal-use-cases-header {
    text-align: center;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 4; /* above tabs glass */
    max-width: 1200px;
}

.fiscal-section-description {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.02em;
    /* Light background styling */
    color: rgba(0, 0, 0, 0.7);
}

.fiscal-use-cases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

/* Tab System */
.fiscal-use-cases-tabs {
    position: relative;
    z-index: 2;
    min-height: 600px;
}

.fiscal-tabs-header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Use cases section tab buttons inherit from main tab button styles above */

/* Tab Content */
.fiscal-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-height: 500px;
    will-change: opacity, transform;
}

.fiscal-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Use Case Content Layout */
.fiscal-use-case-content {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    will-change: transform;
}

.fiscal-use-case-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}



.fiscal-use-case-content:hover::before {
    opacity: 1;
}

/* Visualization Containers */
.fiscal-viz-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 420px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.fiscal-viz-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.02) 0%, rgba(74, 222, 128, 0.01) 100%);
    pointer-events: none;
}

/* Chart Headers */
.fiscal-chart-header {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.fiscal-chart-title {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.fiscal-chart-legend {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.fiscal-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.fiscal-legend-indicator {
    width: 16px;
    height: 3px;
    border-radius: 2px;
    display: inline-block;
}

.fiscal-legend-indicator.fiscal-early {
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
}

.fiscal-legend-indicator.fiscal-consensus {
    border-top: 2px dashed rgba(255, 255, 255, 0.5);
    height: 1px;
    background: none;
}

.fiscal-legend-indicator.fiscal-growth {
    background: linear-gradient(90deg, #4ade80, #22c55e);
}

.fiscal-legend-indicator.fiscal-market-fit {
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.fiscal-legend-indicator.fiscal-brand {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.fiscal-legend-indicator.fiscal-market {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.fiscal-legend-indicator.fiscal-performance {
    background: linear-gradient(90deg, #4ade80, #059669);
}

.fiscal-legend-indicator.fiscal-benchmark {
    background: linear-gradient(90deg, #6b7280, #4b5563);
}

.fiscal-legend-indicator.fiscal-correlation {
    background: linear-gradient(90deg, #ec4899, #db2777);
}

.fiscal-legend-indicator.fiscal-significance {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

/* Timeline Visualization */
.fiscal-timeline-container {
    flex-grow: 1;
    position: relative;
    margin-top: 1rem;
    padding-bottom: 2rem;
}

.fiscal-timeline-chart {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Generic bars for simple column visuals inside timeline charts */
.fiscal-timeline-chart .fiscal-bar {
    fill: rgba(255, 255, 255, 0.25);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fiscal-trend-line {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 2;
    fill: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.fiscal-detection-marker {
    position: absolute;
    top: 0;
    bottom: 2rem;
    z-index: 2;
}

.fiscal-marker-line {
    width: 3px;
    height: 100%;
    background: #4ade80;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
    margin: 0 auto;
}

.fiscal-marker-line.fiscal-dashed {
    background: none;
    border-left: 3px dashed rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.fiscal-marker-label {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 300;
    text-align: center;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.fiscal-early-marker .fiscal-marker-label {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.fiscal-consensus-marker .fiscal-marker-label {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.fiscal-timeline-axis {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* VC Metrics Visualization */
.fiscal-vc-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.fiscal-metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fiscal-metric-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.fiscal-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.fiscal-metric-value.fiscal-positive {
    color: #4ade80;
}

.fiscal-metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* PE Due Diligence Visualization */
.fiscal-dd-analysis {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 1rem;
}

.fiscal-dd-score {
    display: flex;
    justify-content: center;
}

.fiscal-score-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #4ade80 0%, #4ade80 84%, rgba(255, 255, 255, 0.1) 84%, rgba(255, 255, 255, 0.1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fiscal-score-circle::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fiscal-score-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ade80;
    position: relative;
    z-index: 1;
}

.fiscal-score-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.fiscal-dd-factors {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fiscal-factor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fiscal-factor-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    min-width: 100px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.fiscal-factor-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.fiscal-factor-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 3px;
    transition: width 0.8s ease;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.3);
}

/* Asset Manager Dashboard */
.fiscal-am-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.fiscal-performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.fiscal-perf-metric {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fiscal-perf-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.fiscal-perf-value.fiscal-positive {
    color: #4ade80;
}

.fiscal-perf-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Alpha Dashboard - Professional Asset Management Visualization */
.fiscal-alpha-dashboard {
    height: 120px;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
}

.alpha-performance-chart {
    position: relative;
    height: 70px;
    width: 100%;
    background: linear-gradient(180deg, rgba(74, 222, 128, 0.02) 0%, transparent 100%);
    border-radius: 0.5rem;
    overflow: hidden;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.grid-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.15; }
}

.performance-curve {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.curve-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 
        0 0 12px rgba(74, 222, 128, 0.6),
        0 0 24px rgba(74, 222, 128, 0.3);
    animation: alphaPoint 3s ease-in-out infinite;
    transform: translate(-50%, 50%);
}

.curve-point:nth-child(2) { animation-delay: 0.2s; }
.curve-point:nth-child(3) { animation-delay: 0.4s; }
.curve-point:nth-child(4) { animation-delay: 0.6s; }
.curve-point:nth-child(5) { animation-delay: 0.8s; }
.curve-point:nth-child(6) { animation-delay: 1s; }

@keyframes alphaPoint {
    0%, 100% { 
        transform: translate(-50%, 50%) scale(1);
        box-shadow: 
            0 0 12px rgba(74, 222, 128, 0.6),
            0 0 24px rgba(74, 222, 128, 0.3);
    }
    50% { 
        transform: translate(-50%, 50%) scale(1.3);
        box-shadow: 
            0 0 16px rgba(74, 222, 128, 0.8),
            0 0 32px rgba(74, 222, 128, 0.5);
    }
}

.alpha-trend-line {
    position: absolute;
    bottom: 15px;
    left: 8%;
    width: 84%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(74, 222, 128, 0.3) 0%,
        rgba(74, 222, 128, 0.8) 30%,
        rgba(74, 222, 128, 1) 70%,
        rgba(74, 222, 128, 0.9) 100%
    );
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
    animation: alphaFlow 4s ease-in-out infinite;
}

@keyframes alphaFlow {
    0%, 100% { 
        opacity: 0.8;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.02);
    }
}

.benchmark-line {
    position: absolute;
    bottom: 35px;
    left: 8%;
    width: 84%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
}

.benchmark-line::after {
    content: 'Benchmark';
    position: absolute;
    right: -60px;
    top: -8px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.alpha-indicators {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
    animation: indicatorPulse 2s ease-in-out infinite;
}

.indicator-dot.neutral {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    animation: none;
}

@keyframes indicatorPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 12px rgba(74, 222, 128, 0.8);
    }
}

.indicator-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.indicator-item.active .indicator-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Quantitative Analysis */
.fiscal-quant-analysis {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    margin-top: 1rem;
}

.fiscal-correlation-plot {
    position: relative;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fiscal-scatter-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.fiscal-scatter-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: fiscal-pulse 2s infinite;
}

.fiscal-correlation-line {
    position: absolute;
    top: 20%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    transform: rotate(20deg);
    transform-origin: left center;
    box-shadow: 0 0 4px rgba(74, 222, 128, 0.4);
}

.fiscal-r-squared {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.75rem;
    color: #4ade80;
    font-weight: 600;
    background: rgba(74, 222, 128, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
}

.fiscal-stats-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 120px;
}

.fiscal-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fiscal-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fiscal-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

/* Use Case Text Content */
/* Removed header element targeting to keep headers untouched */

.fiscal-use-case-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fiscal-use-case-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.fiscal-use-case-list li:last-child {
    border-bottom: none;
}

.fiscal-use-case-list strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.03em;
}

/* Optimized Animations */
@keyframes fiscal-pulse {
    0%, 100% { 
        transform: scale3d(1, 1, 1); 
        opacity: 1; 
    }
    50% { 
        transform: scale3d(1.05, 1.05, 1); 
        opacity: 0.9; 
    }
}

/* Performance optimizations */
.fiscal-metric-card,
.fiscal-factor-fill,
.fiscal-perf-metric,
.fiscal-scatter-dot,
.fiscal-correlation-line,
.fiscal-r-squared,
.curve-point,
.alpha-trend-line,
.indicator-dot {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .fiscal-use-case-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    
    .fiscal-viz-container {
        height: 360px;
    }
}

@media (max-width: 768px) {
    /* Tablet VALIDATE styles */
    .validation-flow {
        gap: 1.2rem;
    }
    
    .validation-steps {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step-indicator {
        width: 10px;
        height: 10px;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
    
    .result-badge {
        padding: 0.4rem 1.2rem;
    }
    
    .result-text {
        font-size: 0.7rem;
    }

    .fiscal-use-cases-section {
        padding: 6rem 1.5rem;
    }
    
    .fiscal-tabs-header {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .fiscal-tab-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
        min-width: auto;
    }
    
    .fiscal-tab-content {
        min-height: 400px;
    }
    
    .fiscal-use-case-content {
        padding: 2rem;
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    
    .fiscal-viz-container {
        height: 320px;
        padding: 2rem;
        display: flex !important;
        flex-direction: column;
    }
    
    .fiscal-chart-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .fiscal-chart-legend {
        gap: 1rem;
    }
    
    .fiscal-vc-metrics,
    .fiscal-performance-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .fiscal-dd-analysis {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .fiscal-quant-analysis {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Removed header element targeting to keep headers untouched */
}

@media (max-width: 480px) {
    .fiscal-use-cases-section {
        padding: 4rem 1rem;
    }
    
    .fiscal-tab-content {
        min-height: 350px;
    }
    
    .fiscal-use-case-content {
        padding: 1.5rem;
        border-radius: 1.5rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fiscal-viz-container {
        height: 280px;
        padding: 1.5rem;
        display: flex !important;
        flex-direction: column;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .fiscal-correlation-plot {
        height: 120px;
    }
    
    .fiscal-score-circle {
        width: 80px;
        height: 80px;
    }
    
    .fiscal-score-circle::before {
        width: 64px;
        height: 64px;
    }
    
    .fiscal-use-case-list li {
        font-size: 0.95rem;
    }
}

/* ====== END: INSTITUTIONAL USE CASES SECTION ====== */

/* Data Essence Section - BEYOND CONSENSUS header */
.fiscal-data-essence .fiscal-section-label {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 100;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.2;
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow: visible;
}

@media (max-width: 600px) {
  .fiscal-data-essence .fiscal-section-label {
    font-size: 2rem;
    padding: 1rem 0;
  }
}



/* ====== SUBSCRIPTION POPUP STYLES ====== */

.subscription-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 40%,
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0.35) 60%,
        rgba(0,0,0,0.15) 70%,
        rgba(0,0,0,0) 80%,
        rgba(0,0,0,0) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.subscription-popup-overlay.closing {
    animation: subscriptionFadeOut 0.3s ease forwards;
}

.subscription-popup-container {
    position: relative;
    border: none;
    border-radius: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    overflow: hidden;
    box-shadow: none;
    animation: fadeIn 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Full-screen gradient layer to reveal background at edges */
/* remove inner layer to avoid double darkening */
.subscription-popup-container::before { content: none; }

/* Keep inner content centered within the full-screen layer */
.subscription-content { max-width: 640px; width: 90%; margin: 0 auto; }

.subscription-popup-container.closing {
    animation: subscriptionSlideOut 0.3s ease forwards;
}

.subscription-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(74, 222, 128, 0.8);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Small inline close near the heading */
.subscription-inline-close {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
}

.subscription-inline-close:hover {
    background: rgba(74, 222, 128, 0.08);
    border-color: rgba(74, 222, 128, 0.35);
    color: #4ade80;
    /* keep position stable */
    transform: translate(50%, -50%);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.15);
}

.subscription-close-btn:hover {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.6);
    color: #4ade80;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.2);
}

.subscription-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    position: relative;
    min-width: 520px;
    min-height: 200px;
    min-height: 300;
    padding: 1.5rem;
    background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.03) 0%, transparent 70%);
    justify-content: center;
}

.subscription-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    margin-bottom: 2rem;
}

.subscription-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 100;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.15em;
    margin: 0;
    line-height: 1.3;
    animation: titleGlow 3s ease-in-out infinite alternate;
    word-break: break-word;
    white-space: normal;
    text-align: center;
}

.subscription-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin: 1rem 0 0 0;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}

.subscription-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.subscription-popup-container .subscription-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    width: 100%;
}

.subscription-popup-container .subscription-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.subscription-popup-container .subscription-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscription-popup-container .subscription-input:focus {
    outline: none;
    border-color: #4ade80;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.subscription-popup-container .subscription-button {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(74, 222, 128, 0.45);
    border-radius: 6px;
    color: #4ade80;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    min-width: 120px;
}

.subscription-popup-container .subscription-button:hover:not(:disabled) {
    background: rgba(74, 222, 128, 0.08);
    border-color: rgba(74, 222, 128, 0.6);
    color: #4ade80;
    transform: translateY(-1px);
}

.subscription-popup-container .subscription-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.subscription-message {
    text-align: center;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.subscription-message.success {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.subscription-message.error {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.subscription-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.subscription-disclaimer {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 1rem 0 0.5rem 0;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    display: block;
    width: 100%;
    align-self: center;
}

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

@keyframes subscriptionFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes subscriptionSlideIn {
    from { 
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to { 
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes subscriptionSlideOut {
    from { 
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    to { 
        transform: scale(0.95) translateY(-10px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscription-popup-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: 12px;
        width: calc(100vw - 2rem);
    }
    
    .subscription-close-btn {
        top: 1rem;
        right: 1rem;
        width: 30px;
        height: 30px;
    }
    
    .subscription-title {
        font-size: 1.25rem;
        letter-spacing: 0.1em;
    }
    
    .subscription-subtitle {
        font-size: 0.9rem;
        margin: 0.75rem 0 0 0;
    }
    
    .subscription-form {
        max-width: 100%;
    }
    
    .subscription-popup-container .subscription-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .subscription-popup-container .subscription-input,
    .subscription-popup-container .subscription-button {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .subscription-popup-container {
        padding: 1.5rem 1rem;
        width: calc(100vw - 1rem);
        margin: 0.5rem;
    }
    
    .subscription-title {
        font-size: 1.1rem;
        letter-spacing: 0.08em;
        line-height: 1.4;
    }
    
    .subscription-subtitle {
        font-size: 0.9rem;
        margin: 0.75rem 0 0 0;
    }
    
    .subscription-form {
        max-width: 100%;
        padding: 0;
    }
}

/* ====== SUBSCRIPTION POPUP ACCESS STYLES ====== */
.subscription-popup-container .access-heading {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 100;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.25em;
    margin: 0;
    line-height: 1.2;
    animation: titleGlow 3s ease-in-out infinite alternate;
    word-break: keep-all;
    white-space: nowrap;
}

.subscription-popup-container .access-title {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    margin-bottom: 2rem;
    align-items: center;
    text-align: center;
}

.subscription-popup-container .access-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.08em;
    line-height: 1.6;
}

/* ====== ACCESS POPUP STYLES ====== */

.access-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.access-popup-container {
    position: relative;
    background: #000000;
    border: none; /* Remove border */
    border-radius: 0; /* Remove border-radius */
    width: 100vw; /* Full width */
    height: 100vh; /* Full height */
    max-width: 100vw; /* Ensure it takes full width */
    max-height: 100vh; /* Ensure it takes full height */
    overflow-y: auto;
    box-shadow: none; /* Remove box-shadow */
    animation: slideUp 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.popup-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(74, 222, 128, 0.8);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.popup-close-btn:hover {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.6);
    color: #4ade80;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.2);
}

/* Access Options Screen */
.access-popup-container .access-options {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 600px;
    min-height: 500px;
    padding: 2rem;
    background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.03) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.access-popup-container .access-options.visible {
    opacity: 1;
    transform: translateY(0);
}

.access-popup-container .access-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3.5rem;
    position: relative;
}

.access-popup-container .access-title {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    margin-bottom: 2rem;
}

.access-popup-container .access-heading {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 100;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.25em;
    margin: 0;
    line-height: 1.2;
    animation: titleGlow 3s ease-in-out infinite alternate;
    word-break: keep-all;
    white-space: nowrap;
}

.access-popup-container .access-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.08em;
    line-height: 1.6;
}

.access-popup-container .access-buttons {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
}

.access-popup-container .access-button {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    animation: accessPulse 4s ease-in-out infinite;
}

.access-popup-container .button-border {
    background: transparent;
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 0;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.access-popup-container .button-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.1), transparent);
    transition: left 0.6s ease;
}

.access-popup-container .access-button:hover .button-border {
    border-color: rgba(74, 222, 128, 0.6);
    background: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(74, 222, 128, 0.2);
}

.access-popup-container .access-button:hover .button-border::before {
    left: 100%;
}

.access-popup-container .button-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.access-popup-container .button-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.access-popup-container .access-button:hover .button-text {
    color: #4ade80;
}

.access-popup-container .button-indicator {
    font-size: 1.5rem;
    color: rgba(74, 222, 128, 0.6);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 300;
}

.access-popup-container .access-button:hover .button-indicator {
    color: #4ade80;
    transform: translateX(6px) scale(1.1);
}

/* Request Form Screen */
.access-popup-container .request-form {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    min-width: 600px;
    max-width: 800px; /* Set a max-width for the form */
    width: 100%;
    margin: 0 auto; /* Center the form horizontally */
}

.access-popup-container .request-form.visible {
    opacity: 1;
    transform: translateY(0);
}

.access-popup-container .form-container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    position: relative;
}

.access-popup-container .back-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto 2rem auto; /* Center horizontally and maintain bottom margin */
}

.access-popup-container .back-indicator:hover {
    color: #4ade80;
    transform: translateX(-4px);
}

.access-popup-container .back-line {
    width: 2rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.access-popup-container .back-indicator:hover .back-line {
    background: #4ade80;
    width: 2.5rem;
}

.access-popup-container .back-text {
    transition: all 0.3s ease;
}

.access-popup-container .access-form {
    background: rgba(0, 0, 0, 0.4);
    border: none; /* Removed border */
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 3rem; /* Keep padding consistent */
    margin-top: 0; /* Reset margin-top to align with access-options */
}

.access-popup-container .form-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    margin-bottom: 2rem;
}

.access-popup-container .form-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 100;
    letter-spacing: 0.25em;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
    text-align: center; /* Ensure title is centered */
    word-break: keep-all;
    white-space: nowrap;
}

.access-popup-container .form-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.access-popup-container .form-section {
    margin-bottom: 3rem;
}

.access-popup-container .section-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #4ade80;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(74, 222, 128, 0.2);
}

.access-popup-container .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.access-popup-container .form-group {
    display: flex;
    flex-direction: column;
}

.access-popup-container .form-group-full {
    grid-column: 1 / -1;
}

.access-popup-container .form-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.access-popup-container .form-input,
.access-popup-container .form-select,
.access-popup-container .form-textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #ffffff;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    font-family: inherit;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    outline: none;
}

.access-popup-container .form-input:focus,
.access-popup-container .form-select:focus,
.access-popup-container .form-textarea:focus {
    border-color: #4ade80;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.access-popup-container .form-input::placeholder,
.access-popup-container .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.access-popup-container .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234ade80' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.access-popup-container .form-select option {
    background: #000000;
    color: #ffffff;
}

.access-popup-container .form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.access-popup-container .radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.access-popup-container .radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
}

.access-popup-container .radio-option:hover {
    color: #4ade80;
}

.access-popup-container .radio-option input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(74, 222, 128, 0.5);
    border-radius: 50%;
    margin-right: 0.8rem;
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
}

.access-popup-container .radio-option input[type="radio"]:checked {
    border-color: #4ade80;
}

.access-popup-container .radio-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
}

.access-popup-container .radio-label {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.access-popup-container .checkbox-option {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.access-popup-container .checkbox-option input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(74, 222, 128, 0.5);
    margin-top: 0.2rem;
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.access-popup-container .checkbox-option input[type="checkbox"]:checked {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.access-popup-container .checkbox-option input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #4ade80;
    font-size: 12px;
    font-weight: bold;
}

.access-popup-container .checkbox-label {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

.access-popup-container .checkbox-label a {
    color: #4ade80;
    text-decoration: none;
}

.access-popup-container .checkbox-label a:hover {
    color: #ffffff;
}

.access-popup-container .privacy-notice {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.access-popup-container .submit-button {
    background: transparent;
    border: 1px solid rgba(74, 222, 128, 0.5);
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.access-popup-container .submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(74, 222, 128, 0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.access-popup-container .submit-button:hover {
    border-color: #4ade80;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.access-popup-container .submit-button:hover::before {
    left: 100%;
}

.access-popup-container .submit-button:hover .submit-text {
    color: #4ade80;
}

.access-popup-container .submit-button:hover .submit-indicator {
    color: #4ade80;
    transform: translateX(5px);
}

.access-popup-container .submit-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.access-popup-container .submit-indicator {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

/* Success Screen */
.access-popup-container .success-screen {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    min-width: 500px;
    min-height: 400px;
    padding: 4rem 3rem;
}

.access-popup-container .success-screen.visible {
    opacity: 1;
    transform: translateY(0);
}

.access-popup-container .success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.access-popup-container .success-animation {
    margin-bottom: 1rem;
}

.access-popup-container .success-ring {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(74, 222, 128, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: successPulse 2s ease-in-out infinite;
}

.access-popup-container .success-ring::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    animation: successPulse 2s ease-in-out infinite 0.5s;
}

.access-popup-container .success-ring::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 1px solid rgba(74, 222, 128, 0.05);
    border-radius: 50%;
    animation: successPulse 2s ease-in-out infinite 1s;
}

.access-popup-container .success-checkmark {
    color: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-popup-container .checkmark-icon {
    width: 40px;
    height: 40px;
    animation: checkmarkDraw 0.8s ease-in-out 0.5s both;
}

.access-popup-container .success-message {
    margin-bottom: 1rem;
}

.access-popup-container .success-title {
    font-size: 2rem;
    font-weight: 100;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem 0;
}

.access-popup-container .success-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.02em;
}

.access-popup-container .success-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.access-popup-container .success-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.access-popup-container .success-detail .highlight {
    color: #4ade80;
    font-weight: 500;
}

.access-popup-container .success-actions {
    margin-top: 1rem;
}

.access-popup-container .success-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 2rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.access-popup-container .success-button:hover {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(74, 222, 128, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.1);
}

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

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(20px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes successPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

@keyframes checkmarkDraw {
    0% { 
        stroke-dasharray: 0 24; 
        opacity: 0; 
    }
    50% { 
        opacity: 1; 
    }
    100% { 
        stroke-dasharray: 24 0; 
        opacity: 1; 
    }
}

@keyframes accessPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.95; 
        transform: scale(0.998);
    }
}

/* Responsive Design for Popup */
@media (max-width: 768px) {
    .access-popup-container {
        max-width: 95vw;
        margin: 1rem;
    }
    
    .access-popup-container .access-options,
    .access-popup-container .request-form,
    .access-popup-container .success-screen {
        min-width: auto;
        padding: 2rem 1.5rem;
    }
    
    .popup-close-btn {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
    
    .access-popup-container .form-grid {
        grid-template-columns: 1fr;
    }
    
    .access-popup-container .access-heading {
        font-size: 2rem;
    }
    
    .subscription-popup-container .access-heading {
        font-size: 2rem;
    }
    
    .access-popup-container .form-title {
        font-size: 1.5rem;
    }
    
    .access-popup-container .success-title {
        font-size: 1.5rem;
    }
    
    .access-popup-container .access-buttons {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .access-popup-container {
        max-width: 100vw;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    
    .access-popup-container .access-options,
    .access-popup-container .request-form,
    .access-popup-container .success-screen {
        padding: 2rem 1rem;
    }
    
    .access-popup-container .access-heading {
        font-size: 1.75rem;
    }
    
    .subscription-popup-container .access-heading {
        font-size: 1.75rem;
    }
    
    .access-popup-container .form-title {
        font-size: 1.25rem;
    }
    
    .access-popup-container .success-title {
        font-size: 1.25rem;
    }
    
    .access-popup-container .success-details {
        text-align: left;
    }
}

/* ====== SUBSCRIPTION POPUP — MOBILE REFINEMENTS ====== */
@media (max-width: 768px) {
  /* Allow scrolling when keyboard is open and respect safe areas */
  .subscription-popup-container {
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: center;
    padding-top: calc(env(safe-area-inset-top) + 1rem);
    padding-bottom: calc(env(safe-area-inset-bottom) + 1rem);
  }

  /* Relax rigid sizing to avoid overflow on narrow screens */
  .subscription-content {
    min-width: 0;
    min-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    height: auto;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 1rem;
  }

  /* Prevent iOS zoom-on-focus by ensuring 16px font-size */
  .subscription-input {
    font-size: 16px;
  }

  /* Larger, full-width tap target */
  .subscription-button {
    width: 100%;
    min-height: 44px;
    font-size: 16px;
  }

  /* Let the heading wrap on very small screens */
  .subscription-popup-container .access-heading {
    white-space: normal;
    letter-spacing: 0.15em;
  }

  /* Keep close button inside safe areas */
  .subscription-close-btn {
    top: max(1rem, env(safe-area-inset-top));
    right: max(1rem, env(safe-area-inset-right));
  }

  /* Keep inline close within the header area on small screens */
  .subscription-inline-close {
    width: 32px;
    height: 32px;
    transform: translate(40%, -40%);
  }
}

@media (max-width: 480px) {
  .subscription-content {
    gap: 1.5rem;
    padding: 1.25rem 0.75rem;
  }

  .subscription-popup-container .access-heading {
    letter-spacing: 0.12em;
  }
}

/* ====== ELITE HOMEPAGE STYLES (SELF-CONTAINED) ====== */

.elite-homepage {
    width: 100vw;
    height: 100vh;
    background: #000000;
    color: #ffffff;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow: visible;
    position: relative;
    cursor: default !important;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.elite-homepage.loaded {
    opacity: 1;
}

.elite-homepage * {
    cursor: default !important;
}

/* Radial vignette over particles: black center → transparent edges */
.elite-homepage::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 2; /* above canvas (z-index:1), below content (z-index≥10) */
    pointer-events: none;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 30%,
        rgba(0,0,0,0.7) 40%,
        rgba(0,0,0,0.35) 60%,
        rgba(0,0,0,0.15) 70%,
        rgba(0,0,0,0) 80%,
        rgba(0,0,0,0) 100%
    );
}

/* Ambient Background Canvas */
.elite-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Main Content Container */
.elite-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 3rem;
}

/* Logo Link Wrapper */
.logo-constellation-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-constellation-link:hover {
    transform: scale(1.02);
}

/* Logo Constellation */
.logo-constellation {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -1rem;
}

.logo-primary {
    position: relative;
    z-index: 5;
    animation: logoFloat 8s ease-in-out infinite;
}

.paradox-logo {
    width: 135px;
    height: 135px;
    fill: url(#paradox-gradient);
    filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.3));
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.paradox-logo path {
    fill: url(#paradox-gradient);
    transition: fill 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.paradox-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(74, 222, 128, 0.6));
}

.paradox-logo:hover path {
    fill: url(#paradox-gradient-hover);
}

/* Orbital Elements */
.logo-orbit {
    position: absolute;
    border: 1px solid rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 160px;
    height: 160px;
    animation-duration: 15s;
}

.orbit-2 {
    width: 200px;
    height: 200px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 240px;
    height: 240px;
    animation-duration: 35s;
}

.orbit-dot {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
}

/* Core Message */
.elite-message {
    text-align: center;
    letter-spacing: 0.1em;
    overflow: visible;
    margin-top: -2rem;
}

.elite-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 100;
    letter-spacing: 0.3em;
    margin-bottom: 0.28rem;
    padding: 0.2rem 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.elite-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    /* Apply same green→white gradient as title for consistency */
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    padding: 0.05rem 0 0;
    line-height: 1.22;
    letter-spacing: 0.2em;
}

.elite-tagline {
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 400;
    color: rgba(74, 222, 128, 0.7);
    padding: 0.1rem 0;
    line-height: 1.4;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Access Portal */
.access-portal {
    position: relative;
    cursor: pointer;
    margin-top: 1rem;
}

.portal-ring {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(74, 222, 128, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    animation: pulseRing 4s ease-in-out infinite;
}

.portal-ring::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    animation: pulseRing 4s ease-in-out infinite 0.5s;
}

.portal-ring::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(74, 222, 128, 0.05);
    border-radius: 50%;
    animation: pulseRing 4s ease-in-out infinite 1s;
}

.portal-inner {
    width: 80px;
    height: 80px;
    background: rgba(74, 222, 128, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.portal-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #4ade80;
    text-transform: uppercase;
}

.access-portal:hover .portal-ring {
    border-color: rgba(74, 222, 128, 0.6);
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.2);
}

.access-portal:hover .portal-inner {
    background: rgba(74, 222, 128, 0.1);
    transform: scale(1.05);
}

/* Minimal hero CTA overrides */
.elite-homepage .portal-ring {
    border-width: 1px;
    border-color: rgba(74, 222, 128, 0.4);
    background: transparent;
    box-shadow: none;
    animation: none;
    transition: border-color 180ms ease, transform 180ms ease;
}
.elite-homepage .portal-ring::before,
.elite-homepage .portal-ring::after { content: none; }
.elite-homepage .portal-inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.elite-homepage .access-portal:hover .portal-ring {
    transform: translateY(-1px);
    border-color: rgba(74, 222, 128, 0.7);
    box-shadow: none;
}
.elite-homepage .portal-text { 
    font-size: 0.8rem;
    letter-spacing: 0.24em;
    color: #4ade80;
    text-shadow: none;
}

/* Elite Metrics */
.elite-metrics { display:flex; gap: 0rem; align-items:center; justify-content:center; width:100%; max-width:900px; margin:0 auto; }

/* Kinetic Word Rotator under symbols */
.kinetic-rotator { margin-top: -25px; display:flex; align-items:center; justify-content:center; }
.kr-line { display:flex; gap: 8px; align-items:baseline; letter-spacing:0.18em; font-size: clamp(18px, 2.6vw, 28px); line-height: 1.1; }
.kr-static { opacity: 0.8; }
.kr-rotator { position: relative; height: 1.25em; overflow: hidden; display:inline-block; min-width: 9ch; text-align:center; }
.kr-rotator-inner { display:flex; flex-direction:column; animation: krRotate 6s ease-in-out infinite; }
.kr-rotator-inner > span { color:#4ade80; line-height:1.25em; }

@keyframes krRotate {
  /* Stick on DETECT */
  0%, 18% { transform: translateY(0); }
  /* Move and stick on QUANTIFY */
  28%, 46% { transform: translateY(-1.25em); }
  /* Move and stick on ACT ON */
  56%, 74% { transform: translateY(-2.5em); }
  /* Move to duplicate DETECT at the end; loop continues without reversing */
  84%, 100% { transform: translateY(-3.75em); }
}

/* Symbol highlighting */
.hero-symbol { color: rgba(74,222,128,0.6); transition: color 0.3s ease, text-shadow 0.3s ease; }
.hero-symbol.active { color: #4ade80; text-shadow: 0 0 18px rgba(74,222,128,0.35); }

/* Strong override to ensure active color wins over any defaults */
.metric-value.hero-symbol { color: rgba(74,222,128,0.6) !important; }
.metric-value.hero-symbol.active { color: #4ade80 !important; text-shadow: 0 0 18px rgba(74,222,128,0.35) !important; }

.metric { text-align:center; opacity:0.8; transition: all 0.3s ease; display:flex; align-items:center; justify-content:center; width:132px; height:68px; min-width:132px; padding:0.1rem; border-radius:4px; }

.metric:hover {
    opacity: 1;
    transform: translateY(-5px);
    background: rgba(74, 222, 128, 0.05);
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.1);
}

.metric-value { font-size: 3.7rem; font-weight:100; color:#4ade80; font-family:'SF Pro Display', system-ui, sans-serif; display:flex; align-items:center; justify-content:center; height:4.2rem; width:100%; line-height:1; margin:0; }

.metric-label { display:none; }

/* Radar icon sweep animation */
.radar-icon { width: 80px; height: 80px; }
.elite-homepage .radar-icon { width: 48px; height: 48px; }
.radar-icon .radar-sweep { transform-origin: 24px 24px; animation: radarSweep 2.2s linear infinite; opacity: 0.9; }
@keyframes radarSweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Hero (first section) override: keep radar line fixed (no rotation) */
.elite-homepage .radar-icon .radar-sweep {
    animation: none !important;
    transform: rotate(0deg) !important;
}

/* Hero (first section) override: remove any transparency from radar elements */
.elite-homepage .radar-icon circle,
.elite-homepage .radar-icon line,
.elite-homepage .radar-icon path,
.elite-homepage .radar-icon g {
    opacity: 1 !important;
    stroke-opacity: 1 !important;
    fill-opacity: 1 !important;
}

/* Hero (first section) override: show outer ring + one inner ring; hide remaining circles (including center dot) */
.elite-homepage .radar-icon circle:nth-of-type(n+3) {
    display: none !important;
}

/* Act On – arrow to target with subtle motion */
.acton-icon { width: 44px; height: 44px; }
.acton-icon .acton-motion { animation: actPulse 1.8s ease-in-out infinite; }
@keyframes actPulse { 0%,100% { filter:none; } 50% { filter: drop-shadow(0 0 6px rgba(74,222,128,0.35)); } }

/* Hero (first section) override: make ACT infinity icon larger and crisper */
.elite-homepage .acton-icon { width: 88px; height: 88px; }
.elite-homepage [data-role="act"] svg g {
    filter: drop-shadow(0 0 6px rgba(74,222,128,0.2));
}





/* Animations */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

@keyframes pulseRing {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes titleGlow {
    0% { filter: brightness(1) drop-shadow(0 0 5px rgba(74, 222, 128, 0.2)); }
    100% { filter: brightness(1.1) drop-shadow(0 0 15px rgba(74, 222, 128, 0.4)); }
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ====== BUTTON STYLES (FROM SHARED) ====== */

.fiscal-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'SF Pro Display', inherit;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

/* Unify all CTA buttons to the minimal border style */
.fiscal-btn-primary,
.fiscal-btn-secondary {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    color: rgba(255,255,255,0.9) !important;
    border-radius: 8px !important;
    letter-spacing: 0.18em !important;
    font-weight: 400 !important;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: relative;
    overflow: hidden;
}

.fiscal-btn-primary::before,
.fiscal-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.fiscal-btn-primary:hover,
.fiscal-btn-secondary:hover {
    border-color: rgba(255,255,255,0.45) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.12);
    color: #ffffff !important;
    text-decoration: none;
}

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

/* ====== RESPONSIVE DESIGN FOR ELITE HOMEPAGE ====== */

@media (max-width: 768px) {
    .elite-content {
        gap: 2rem;
        padding: 1rem;
    }
    
    .logo-constellation {
        width: 150px;
        height: 150px;
    }
    
    .paradox-logo {
        width: 90px;
        height: 90px;
    }
    
    .orbit-1 { width: 120px; height: 120px; }
    .orbit-2 { width: 150px; height: 150px; }
    .orbit-3 { width: 180px; height: 180px; }
    
    .elite-metrics {
        gap: 2.5rem;
        max-width: 600px;
    }
    
    .metric {
        min-width: 100px;
    }
    
    .metric-value {
        font-size: 2.5rem;
        height: 3rem;
        font-weight: 400;
    }
    
    .access-portal {
        transform: scale(0.8);
    }
    

}

@media (max-width: 480px) {
    .elite-content {
        gap: 2rem;
    }
    
    .elite-metrics {
        flex-direction: row;
        gap: 1.5rem;
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .metric {
        min-width: 60px;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .metric-value {
        font-size: 1.8rem;
        height: 2rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }
    
    .metric-label {
        font-size: 0.55rem;
        opacity: 1;
        white-space: nowrap;
    }
    
    /* Always show labels on mobile */
    .metric .metric-label {
        opacity: 1 !important;
    }
}

/* Mobile landscape - optimize spacing */
@media (max-width: 812px) and (max-height: 480px) and (orientation: landscape) {
    .elite-metrics {
        gap: 2rem;
        transform: scale(0.9);
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .metric-label {
        opacity: 1 !important;
        font-size: 0.6rem;
    }
}

/* Extra small screens - keep horizontal layout */
@media (max-width: 320px) {
    .elite-metrics {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .metric {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }
    
    .metric-value {
        font-size: 1.5rem;
        height: 1.8rem;
    }
    
    .metric-label {
        font-size: 0.5rem;
    }
    
    /* Always show labels on extra small mobile */
    .metric .metric-label {
        opacity: 1 !important;
    }
    
    .logo-constellation {
        width: 120px;
        height: 120px;
    }
    
    .paradox-logo {
        width: 68px;
        height: 68px;
    }
    
    .orbit-1 { width: 100px; height: 100px; }
    .orbit-2 { width: 120px; height: 120px; }
    .orbit-3 { width: 140px; height: 140px; }
}

/* ===== DATA SOURCES CAROUSEL SECTION ===== */

.data-sources-carousel-section {
    padding: 6rem 2rem;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.data-sources-carousel {
    position: relative;
    width: 100%;
    height: 160px;
    perspective: 1200px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.carousel-slide-3d {
    position: absolute;
    width: 200px;
    height: 120px;
    left: 50%;
    top: 50%;
    transform-origin: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    opacity: 0;
    filter: grayscale(100%) brightness(0.7);
    pointer-events: none;
    z-index: 0;
}

.carousel-slide-3d.carousel-active {
    transform: translate(-50%, -50%) translateZ(0px) scale(1.1);
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    z-index: 10;
    pointer-events: auto;
}

.carousel-slide-3d.carousel-next {
    transform: translate(-50%, -50%) translateX(220px) translateZ(-100px) rotateY(-25deg) scale(0.9);
    opacity: 0.7;
    filter: grayscale(50%) brightness(0.85);
    z-index: 5;
    pointer-events: auto;
}

.carousel-slide-3d.carousel-prev {
    transform: translate(-50%, -50%) translateX(-220px) translateZ(-100px) rotateY(25deg) scale(0.9);
    opacity: 0.7;
    filter: grayscale(50%) brightness(0.85);
    z-index: 5;
    pointer-events: auto;
}

.carousel-slide-3d.carousel-next-next {
    transform: translate(-50%, -50%) translateX(400px) translateZ(-200px) rotateY(-45deg) scale(0.7);
    opacity: 0.3;
    filter: grayscale(80%) brightness(0.6);
    z-index: 2;
    pointer-events: auto;
}

.carousel-slide-3d.carousel-prev-prev {
    transform: translate(-50%, -50%) translateX(-400px) translateZ(-200px) rotateY(45deg) scale(0.7);
    opacity: 0.3;
    filter: grayscale(80%) brightness(0.6);
    z-index: 2;
    pointer-events: auto;
}

/* Hide slides that are beyond the visible range */
.carousel-slide-3d:not(.carousel-active):not(.carousel-next):not(.carousel-prev):not(.carousel-next-next):not(.carousel-prev-prev) {
    transform: translate(-50%, -50%) translateX(1000px) translateZ(-500px) scale(0.1);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.data-source-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.data-source-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(74, 222, 128, 0.5) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-slide-3d.carousel-active .data-source-card::before {
    opacity: 1;
}

.carousel-slide-3d:hover .data-source-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(74, 222, 128, 0.3);
    transform: translateY(-2px);
}

.data-source-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.carousel-slide-3d.carousel-active .data-source-icon {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.data-source-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    letter-spacing: 0.025em;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.carousel-slide-3d.carousel-active .data-source-label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .radar-icon .radar-sweep,
  .curve-point,
  .alpha-trend-line,
  .indicator-dot,
  .grid-line,
  .connector-line.highlighted,
  .keyword-node.highlight,
  .keyword-node.highlight-down,
  .subscription-popup-overlay,
  .access-popup-container,
  .portal-ring,
  .kr-rotator-inner {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive Design for Data Sources Carousel */
@media (max-width: 1200px) {
    .carousel-slide-3d.carousel-next {
        transform: translate(-50%, -50%) translateX(180px) translateZ(-80px) rotateY(-20deg) scale(0.85);
    }
    
    .carousel-slide-3d.carousel-prev {
        transform: translate(-50%, -50%) translateX(-180px) translateZ(-80px) rotateY(20deg) scale(0.85);
    }
    
    .carousel-slide-3d.carousel-next-next {
        transform: translate(-50%, -50%) translateX(320px) translateZ(-150px) rotateY(-35deg) scale(0.65);
    }
    
    .carousel-slide-3d.carousel-prev-prev {
        transform: translate(-50%, -50%) translateX(-320px) translateZ(-150px) rotateY(35deg) scale(0.65);
    }
}

@media (max-width: 992px) {
    .data-sources-carousel {
        height: 140px;
    }
    
    .carousel-slide-3d {
        width: 160px;
        height: 100px;
    }
    
    .data-source-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .data-source-label {
        font-size: 0.8rem;
    }
    
    .carousel-slide-3d.carousel-next {
        transform: translate(-50%, -50%) translateX(140px) translateZ(-60px) rotateY(-15deg) scale(0.8);
    }
    
    .carousel-slide-3d.carousel-prev {
        transform: translate(-50%, -50%) translateX(-140px) translateZ(-60px) rotateY(15deg) scale(0.8);
    }
    
    /* Only show 3 slides on tablets */
    .carousel-slide-3d.carousel-next-next,
    .carousel-slide-3d.carousel-prev-prev {
        transform: translate(-50%, -50%) translateX(800px) translateZ(-400px) scale(0.1);
        opacity: 0;
        pointer-events: none;
        z-index: -1;
    }
}

@media (max-width: 768px) {
    .data-sources-carousel-section {
        padding: 4rem 1rem;
    }
    
    .data-sources-carousel {
        height: 120px;
    }
    
    .carousel-slide-3d {
        width: 140px;
        height: 90px;
    }
    
    .data-source-card {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .data-source-icon {
        width: 36px;
        height: 36px;
    }
    
    .data-source-label {
        font-size: 0.75rem;
    }
    
    .carousel-slide-3d.carousel-next {
        transform: translate(-50%, -50%) translateX(120px) translateZ(-40px) rotateY(-10deg) scale(0.75);
    }
    
    .carousel-slide-3d.carousel-prev {
        transform: translate(-50%, -50%) translateX(-120px) translateZ(-40px) rotateY(10deg) scale(0.75);
    }
}

@media (max-width: 480px) {
    .data-sources-carousel {
        height: 100px;
    }
    
    .carousel-slide-3d {
        width: 120px;
        height: 80px;
    }
    
    .data-source-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.25rem;
    }
    
    .data-source-label {
        font-size: 0.7rem;
    }
    
    .carousel-slide-3d.carousel-next {
        transform: translate(-50%, -50%) translateX(100px) translateZ(-30px) rotateY(-8deg) scale(0.7);
    }
    
    .carousel-slide-3d.carousel-prev {
        transform: translate(-50%, -50%) translateX(-100px) translateZ(-30px) rotateY(8deg) scale(0.7);
    }
}

/* ===== ELITE INVESTMENT PROCESS VISUALIZATION ===== */

/* Elite Process Section - World-class sophistication */
.elite-process-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elite-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.elite-process-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Process Header - Elite Typography */
.process-header {
    text-align: center;
    margin-bottom: 6rem;
}

.process-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 100;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite alternate;
}

.process-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.05em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
    text-align: center;
}

/* Process Flow Container - Premium Layout */
.process-flow-container {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) auto minmax(280px, auto) auto minmax(300px, 1fr);
    align-items: center;
}

/* Process Stages - Sophisticated Design */
.process-stage {
    position: relative;
    text-align: center;
    padding: 4rem 3rem 4.5rem 3rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(74, 222, 128, 0.15);
    border-radius: 0;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: visible;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Individual stage backgrounds */
.process-stage[data-stage="detect"] {
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('/src/assets/images/Front Page Background 1.jpg');
}

.process-stage[data-stage="validate"] {
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('/src/assets/images/Front Page Background 2.jpg');
}

.process-stage[data-stage="act"] {
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('/src/assets/images/Front Page Background 3.jpg');
}

.process-stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.01) 0%, rgba(74, 222, 128, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.process-stage:hover::before {
    opacity: 1;
}

.process-stage:hover {
    transform: translateY(-12px);
    border-color: rgba(74, 222, 128, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(74, 222, 128, 0.02) 100%);
    box-shadow: 
        0 32px 100px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(74, 222, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Stage Numbers - Elite Numbering */
.stage-number {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 700;
    color: #000000;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    padding: 0.75rem 1.25rem;
    border: 2px solid rgba(74, 222, 128, 0.6);
    border-radius: 50px;
    letter-spacing: 0.15em;
    box-shadow: 
        0 4px 15px rgba(74, 222, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Stage Content - Premium Typography */
.stage-content {
    position: relative;
    z-index: 5;
}

.stage-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 100;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.2rem;
}

.stage-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Stage Visualizations - Sophisticated Graphics */
.stage-visualization {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ACT Visualization - Vertical Layout */
.act-viz {
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    height: 220px;
}

/* DETECT Visualization */
.detect-viz .data-streams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
    justify-content: center;
    padding-left: 1rem;
}

.data-stream {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.8rem;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 20px;
    letter-spacing: 0.05em;
    animation: streamFlow 3s ease-in-out infinite;
    opacity: 0.9;
    font-weight: 500;
}

.data-stream:nth-child(2) { animation-delay: 0.6s; }
.data-stream:nth-child(3) { animation-delay: 1.2s; }
.data-stream:nth-child(4) { animation-delay: 1.8s; }
.data-stream:nth-child(5) { animation-delay: 2.4s; }

.detection-core {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(74, 222, 128, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(74, 222, 128, 0.02);
    color: #4ade80;
}

/* core-pulse and core-label removed in favor of radar icon */

/* VALIDATE - Simple Validation Flow */
.validation-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.validation-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.validation-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.3);
    border: 2px solid rgba(74, 222, 128, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: #4ade80;
    border-color: #4ade80;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
    animation: stepPulse 2s ease-in-out infinite;
}

.step-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.validation-result {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.result-badge {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
    border: 1px solid rgba(74, 222, 128, 0.4);
    border-radius: 0;
    animation: resultGlow 2s ease-in-out infinite;
}

.result-text {
    font-size: 0.75rem;
    color: #4ade80;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
}

/* Simple Validation Animations */
@keyframes stepPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(74, 222, 128, 0.8);
    }
}

@keyframes resultGlow {
    0%, 100% { 
        border-color: rgba(74, 222, 128, 0.4);
        box-shadow: 0 0 8px rgba(74, 222, 128, 0.2);
    }
    50% { 
        border-color: rgba(74, 222, 128, 0.6);
        box-shadow: 0 0 16px rgba(74, 222, 128, 0.4);
    }
}

/* Advanced Signal Processing Animations */
@keyframes strongSignal {
    0%, 100% { 
        transform: scaleX(1);
        opacity: 1;
        filter: brightness(1);
    }
    50% { 
        transform: scaleX(1.2);
        opacity: 0.8;
        filter: brightness(1.3);
    }
}

@keyframes mediumSignal {
    0%, 100% { 
        transform: scaleX(1);
        opacity: 0.8;
    }
    50% { 
        transform: scaleX(1.1);
        opacity: 1;
    }
}

@keyframes weakSignal {
    0%, 100% { 
        transform: scaleX(1);
        opacity: 0.6;
    }
    50% { 
        transform: scaleX(0.9);
        opacity: 0.4;
    }
}

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

@keyframes coreRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes validatedSignal {
    0%, 100% {
        transform: scaleX(1);
        filter: brightness(1);
    }
    50% {
        transform: scaleX(1.1);
        filter: brightness(1.2);
    }
}

@keyframes signalSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes statusGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
        border-color: rgba(74, 222, 128, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
        border-color: rgba(74, 222, 128, 0.5);
    }
}

/* ACT Visualization */
.investment-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
    justify-content: center;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.75rem;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 75px;
    position: relative;
    overflow: hidden;
}

.action-item:hover {
    transform: translateY(-4px);
}

.action-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px currentColor;
}

.action-item.buy .action-icon {
    color: #22c55e;
}

.action-item.hold .action-icon {
    color: rgba(255, 255, 255, 0.7);
}

.action-item.sell .action-icon {
    color: #ef4444;
}

.action-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.alpha-indicator {
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
    border: 3px dashed rgba(74, 222, 128, 0.4);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(74, 222, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.alpha-indicator::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 4px;
    background: transparent;
}

.alpha-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 0.4rem;
    text-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.alpha-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Process Arrows - Sophisticated Flow Indicators */
.process-arrow {
    position: relative;
    width: 80px;
    height: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(74, 222, 128, 0.3) 50%, rgba(74, 222, 128, 0.6) 100%);
    position: relative;
}

.arrow-head {
    position: absolute;
    right: -5px;
    width: 0;
    height: 0;
    border-left: 8px solid rgba(74, 222, 128, 0.6);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.data-flow-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #4ade80;
    border-radius: 50%;
    animation: particleFlow 2s linear infinite;
}

.particle:nth-child(2) { animation-delay: 0.7s; }
.particle:nth-child(3) { animation-delay: 1.4s; }

/* Elite Process Metrics - Signature Symbols */
.elite-process-metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.metric-item {
    text-align: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.metric-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.metric-value {
    font-size: 4rem;
    font-weight: 100;
    color: #4ade80;
    margin-bottom: 1rem;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Elite Process CTA - Professional CTA Buttons */
.elite-process-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.elite-access-portal,
.elite-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(74, 222, 128, 0.45);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    cursor: pointer;
}

.elite-access-portal::before,
.elite-demo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(74, 222, 128, 0.12) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.elite-access-portal:hover,
.elite-demo-btn:hover {
    border-color: rgba(74, 222, 128, 0.75);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.elite-access-portal:hover::before,
.elite-demo-btn:hover::before {
    left: 100%;
}

/* Primary CTA styling for ACCESS */
.elite-access-portal { font-weight: 400; }

/* Make top hero DEMO button match secondary CTA style */
.elite-demo-btn {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
}

.elite-demo-btn::before {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
}

.elite-demo-btn:hover {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.elite-access-portal:hover {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.25) 0%, rgba(74, 222, 128, 0.15) 100%);
    border-color: rgba(74, 222, 128, 0.7);
}

/* Ensure CONTACT SALES TEAM text is white (override generic hover color) */
.index-page #contact-sales-btn.elite-access-portal {
    border-color: rgba(74, 222, 128, 0.45);
    color: #ffffff;
}

.index-page #contact-sales-btn.elite-access-portal:hover {
    color: #ffffff;
}

/* Remove old portal styles */
.elite-portal-ring,
.elite-portal-inner,
.elite-portal-text {
    display: none;
}

/* Elite Animations */
@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(74, 222, 128, 0.5)); }
}

@keyframes streamFlow {
    0%, 100% { opacity: 0.7; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(10px); }
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}



@keyframes particleFlow {
    0% { left: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes elitePortalPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* Responsive Design - Elite Mobile Experience */
@media (max-width: 1400px) {
    .process-flow-container {
        gap: 2rem;
    }
    
    .process-stage {
        padding: 3rem 2rem;
    }
}

@media (max-width: 1200px) {
    .process-flow-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        max-width: 600px;
        margin: 0 auto 6rem;
    }
    
    .process-arrow {
        width: 2px;
        height: 80px;
        transform: rotate(90deg);
        justify-self: center;
    }
    
    .arrow-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, transparent 0%, rgba(74, 222, 128, 0.3) 50%, rgba(74, 222, 128, 0.6) 100%);
    }
    
    .arrow-head {
        right: auto;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 8px solid rgba(74, 222, 128, 0.6);
        border-bottom: none;
    }
    
    .particle {
        animation: particleFlowVertical 2s linear infinite;
    }
}

@media (max-width: 992px) {
    .elite-process-section {
        padding: 6rem 2rem;
    }
    
    .process-flow-container {
        gap: 1.5rem;
    }
    
    .process-stage {
        padding: 3rem 2rem;
    }
    
    .stage-visualization {
        height: 180px;
    }
    
    .act-viz {
        height: 200px;
        gap: 1.25rem;
    }
    
    .signal-processor {
        gap: 1.5rem;
        padding: 0.75rem;
    }
     
     .investment-actions {
         gap: 1rem;
         flex-wrap: wrap;
     }
    
    .action-item {
        min-width: 70px;
        padding: 1.25rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .elite-process-section {
        padding: 4rem 1.5rem;
        min-height: auto;
    }
    
    .process-header {
        margin-bottom: 4rem;
    }
    
         .process-main-title {
         font-size: clamp(2rem, 6vw, 3rem);
         line-height: 1.1;
     }
    
    .process-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }
    
         .process-stage {
         padding: 2.5rem 1.5rem 3rem 1.5rem;
     }
    
    .stage-number {
        top: -1.5rem;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
         .stage-title {
         font-size: clamp(1.5rem, 6vw, 2.2rem);
         margin-bottom: 0.75rem;
         padding-bottom: 0.3rem;
     }
    
    .stage-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .stage-visualization {
        height: 160px;
    }
    
    /* DETECT Mobile Adjustments */
    .detect-viz .data-streams {
        padding-left: 0.5rem;
        gap: 0.6rem;
    }
    
    .data-stream {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .detection-core {
        right: 1rem;
        width: 60px;
        height: 60px;
    }
    
    .core-pulse {
        width: 30px;
        height: 30px;
    }
    
    .core-label {
        font-size: 0.55rem;
    }
    
         /* VALIDATE Mobile Adjustments */
     .signal-processor {
         gap: 1rem;
         padding: 0.5rem;
         grid-template-columns: 1fr;
         grid-template-rows: auto auto auto;
         text-align: center;
     }
     
     .signal-inputs {
         order: 1;
         align-items: center;
     }
     
     .processing-core {
         order: 2;
         width: 60px;
         height: 60px;
         margin: 0 auto;
     }
     
     .signal-output {
         order: 3;
         align-items: center;
     }
     
     .wave-line {
         width: 50px;
     }
     
     .output-line {
         width: 60px;
     }
    
         /* ACT Mobile Adjustments */
     .investment-actions {
         gap: 0.75rem;
         margin-bottom: 0;
     }
    
    .action-item {
        min-width: 60px;
        padding: 1rem 0.5rem;
    }
    
    .action-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .action-label {
        font-size: 0.7rem;
    }
    
         .alpha-indicator {
         padding: 1rem 1rem;
         max-width: 240px;
         min-height: 70px;
     }
    
         .alpha-value {
         font-size: 1.3rem;
         margin-bottom: 0.3rem;
     }
     
     .alpha-label {
         font-size: 0.65rem;
     }
    
    /* Elite Metrics Mobile */
    .elite-process-metrics {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 3rem;
    }
    
    .metric-value {
        font-size: 3rem;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
    
         /* Elite CTA Mobile */
     .elite-process-cta {
         flex-direction: column;
         gap: 1.5rem;
         align-items: center;
     }
     
     .elite-access-portal,
     .elite-demo-btn {
         padding: 1rem 2rem;
         font-size: 0.9rem;
         min-width: 160px;
     }
}

@media (max-width: 480px) {
    .elite-process-section {
        padding: 3rem 1rem;
    }
    
    .process-header {
        margin-bottom: 3rem;
    }
    
         .process-main-title {
         font-size: clamp(1.8rem, 8vw, 2.5rem);
         letter-spacing: 0.1em;
     }
    
    .process-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
        line-height: 1.5;
    }
    
         .process-stage {
         padding: 2rem 1rem 2.5rem 1rem;
     }
    
    .stage-number {
        top: -1.25rem;
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
         .stage-title {
         font-size: clamp(1.25rem, 8vw, 1.8rem);
         letter-spacing: 0.1em;
         padding-bottom: 0.25rem;
     }
    
    .stage-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .stage-visualization {
        height: 140px;
    }
    
    /* Extra Small Screen DETECT */
    .detect-viz .data-streams {
        gap: 0.4rem;
        padding-left: 0.25rem;
    }
    
    .data-stream {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .detection-core {
        right: 0.5rem;
        width: 50px;
        height: 50px;
    }
    
    .core-pulse {
        width: 25px;
        height: 25px;
    }
    
    .core-label {
        font-size: 0.5rem;
    }
    
                   /* Extra Small Screen VALIDATE */
     .validation-flow {
         gap: 1rem;
         padding: 0.5rem 0;
     }
     
     .validation-steps {
         gap: 1rem;
         flex-wrap: wrap;
     }
     
     .step-indicator {
         width: 10px;
         height: 10px;
     }
     
     .step-label {
         font-size: 0.6rem;
     }
     
     .result-badge {
         padding: 0.4rem 1rem;
     }
     
     .result-text {
         font-size: 0.65rem;
     }
    
    /* Extra Small Screen ACT */
    .investment-actions {
        gap: 0.5rem;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .action-item {
        min-width: 50px;
        padding: 0.75rem 0.25rem;
        flex: 1;
        max-width: 70px;
    }
    
    .action-icon {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }
    
    .action-label {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }
    
         .alpha-indicator {
         padding: 0.9rem 0.75rem;
         max-width: 190px;
         min-height: 60px;
     }
    
    .alpha-value {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .alpha-label {
        font-size: 0.65rem;
    }
    
    /* Extra Small Elite Metrics */
    .elite-process-metrics {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .metric-item {
        flex: 1;
        min-width: 80px;
    }
    
    .metric-value {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
    
         /* Extra Small CTA */
     .elite-access-portal,
     .elite-demo-btn {
         padding: 0.9rem 1.5rem;
         font-size: 0.85rem;
         width: 100%;
         max-width: 250px;
         text-align: center;
         min-width: auto;
     }
}

/* Additional Animation for Vertical Flow */
@keyframes particleFlowVertical {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}


/* ===== Alignment overrides for index page ===== */
.index-page .fiscal-section-content,
.index-page .professional-content-section,
.index-page .fiscal-use-case-content,
.index-page .elite-process-container,
.index-page .data-sources-carousel-section .fiscal-section-content {
  text-align: left;
}

/* Center only headings/titles by default */
.index-page h1,
.index-page h2,
.index-page h3,
.index-page .fiscal-section-label,
.index-page .fiscal-cta-subheader,
.index-page .fiscal-global-title,
.index-page .process-main-title,
.index-page .elite-title,
.index-page .elite-subtitle,
.index-page .fiscal-chart-title {
  text-align: center;
}

/* Ensure paragraph and list text aligns left */
.index-page p,
.index-page ul,
.index-page ol,
.index-page li,
.index-page .fiscal-feature-description,
.index-page .fiscal-use-case-text,
.index-page .process-subtitle {
  text-align: left;
}

/* Keep specific UX elements centered where needed */
.index-page .elite-metrics,
.index-page .kinetic-rotator,
.index-page .access-portal,
.index-page .fiscal-cta-buttons,
.index-page .data-sources-carousel {
  text-align: center;
}

/* Center the small caption under the data sources carousel */
.index-page .data-sources-caption {
  text-align: center;
  margin-top: 2rem;
}

/* Reuse footer disclaimer style but ensure centering here */
.index-page .data-sources-caption .fiscal-newsletter-disclaimer {
  text-align: center;
  margin: 0;
}

/* Ensure Data Essence header area is centered */
.index-page .fiscal-data-essence .fiscal-section-content {
  text-align: center;
}

.index-page .fiscal-data-essence .fiscal-feature-badge {
  margin-left: auto;
  margin-right: auto;
}

/* Paradox Intelligence Whitepaper Section */
.paradox-whitepaper-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.98) 100%);
    position: relative;
}

.paradox-whitepaper-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(74, 222, 128, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.whitepaper-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    position: relative;
    z-index: 1;
}

.whitepaper-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(74, 222, 128, 0.8);
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.whitepaper-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 100;
    margin-bottom: 3rem;
    letter-spacing: 0.15em;
    text-align: center;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
}

.whitepaper-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin: 0;
}

.whitepaper-content {
    max-width: min(90%, 800px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.whitepaper-abstract {
    text-align: left;
}

.abstract-text {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-family: 'Times New Roman', Times, Georgia, serif;
    letter-spacing: 0.01em;
    margin: 0 0 1.5rem 0;
    text-align: justify !important;
    text-justify: inter-word;
}

.abstract-text:last-child {
    margin-bottom: 0;
}

.whitepaper-cta {
    text-align: center;
    margin-top: clamp(2rem, 5vw, 3rem);
}

.whitepaper-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whitepaper-button:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    font-size: 1.5em;
}

.whitepaper-button:hover .button-arrow {
    transform: translateX(3px);
}

/* Whitepaper Subscription Form */
.whitepaper-subscription-form-container {
    margin-top: 1.5rem;
    animation: fadeInUp 0.3s ease-out;
    width: 100%;
    text-align: center;
}

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

.whitepaper-subscription-form {
    margin-bottom: 1rem;
}

.whitepaper-subscription-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    text-align: left;
}

.whitepaper-subscription-input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.whitepaper-subscription-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.whitepaper-subscription-input:focus {
    outline: none;
    border-color: rgba(74, 222, 128, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.whitepaper-subscription-button {
    padding: 0.875rem 1.5rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 6px;
    color: rgba(74, 222, 128, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.whitepaper-subscription-button:hover:not(:disabled) {
    background: rgba(74, 222, 128, 0.15);
    border-color: rgba(74, 222, 128, 0.5);
    color: #4ade80;
}

.whitepaper-subscription-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.whitepaper-subscription-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .whitepaper-subscription-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .whitepaper-subscription-input-group {
        flex-direction: column;
    }
    
    .whitepaper-subscription-button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .paradox-whitepaper-section {
        padding: clamp(3rem, 8vw, 5rem) 0;
    }
    
    .whitepaper-header {
        margin-bottom: clamp(2rem, 5vw, 3rem);
    }
    
    .abstract-text {
        font-size: clamp(1rem, 2vw, 1.2rem);
        line-height: 1.6;
        font-family: 'Times New Roman', Times, Georgia, serif;
    }
    
    .whitepaper-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .paradox-whitepaper-section {
        padding: 2rem 0;
    }
    
    .whitepaper-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .whitepaper-title {
        font-size: 1.8rem;
    }
    
    .whitepaper-subtitle {
        font-size: 0.9rem;
    }
    
    .abstract-text {
        font-size: 1rem;
        line-height: 1.5;
        font-family: 'Times New Roman', Times, Georgia, serif;
    }
    
    .whitepaper-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
}