/* ============================================
   FONT FACE DECLARATIONS
   ============================================ */

@font-face {
    font-family: 'Meno Banner';
    src: url('Fonts/_Meno Banner Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Meno Banner';
    src: url('Fonts/_Meno Banner Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Meno Banner';
    src: url('Fonts/_Meno Banner Semi Bold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Meno Banner';
    src: url('Fonts/_Meno Banner Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    line-height: 1.7;
    color: #1E2A39;
    background-color: #F8F9FA;
    font-size: 1.1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

main {
    flex: 1;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

section {
    padding: 3rem 0;
}

.alt-bg {
    background-color: #F8F9FA;
}

.dark-bg {
    background-color: #1A2532;
    color: #F8F9FA;
}

.dark-bg .section-header {
    color: #F8F9FA;
}

.dark-bg .section-subheader {
    color: #E0E0E0;
}

.dark-bg .pillar-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-top-color: #C8A678;
    backdrop-filter: blur(10px);
}

.dark-bg .pillar-card h3 {
    color: #F8F9FA;
}

.dark-bg .pillar-card p {
    color: #E0E0E0;
}

.dark-bg .pillar-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-top-color: #D4B589;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    position: sticky;
    top: 0;
    background-color: #1A2532;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.25rem 2rem;
    gap: 3rem;
}

.nav-left {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: auto;
}

.logo {
    font-family: "Meno Banner", serif;
    color: #C8A678;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1.2;
    text-align: center;
    padding: 0.5rem 0;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
    color: #D4B589;
}

.logo img {
    height: auto;
    max-height: 50px;
    width: auto;
    display: block;
}

.logo-line-1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    letter-spacing: -0.01em;
}

.logo-line-2 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 0.15rem;
}

.logo-line-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.15rem 0;
    width: 100%;
}

.logo-line-separator::before,
.logo-line-separator::after {
    content: '';
    flex: 0 0 auto;
    width: 1.5rem;
    height: 1px;
    background-color: #C8A678;
    opacity: 0.6;
}

.logo-line-3 {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

.logo-line-4 {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

@media (max-width: 968px) {
    .logo img {
        max-height: 45px;
    }
    
    .logo-line-1 {
        font-size: 1.75rem;
    }
    
    .logo-line-2 {
        font-size: 0.9rem;
    }
    
    .logo-line-3 {
        font-size: 0.65rem;
    }
    
    .logo-line-4 {
        font-size: 0.8rem;
    }
    
}

@media (max-width: 640px) {
    .logo img {
        max-height: 35px;
    }
    
    .logo-line-1 {
        font-size: 1.5rem;
    }
    
    .logo-line-2 {
        font-size: 0.8rem;
    }
    
    .logo-line-3 {
        font-size: 0.6rem;
    }
    
    .logo-line-4 {
        font-size: 0.75rem;
    }
    
}

.nav-links a {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    color: #F8F9FA;
    font-size: 1rem;
    letter-spacing: 0.1em;
    opacity: 0.85;
    position: relative;
    padding-bottom: 0.2rem;
    transition: opacity 0.3s ease;
    font-weight: 400;
    font-style: normal;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.2rem;
    height: 1px;
    background-color: #C8A678;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Navigation Dropdown */
.nav-item-with-dropdown {
    position: relative;
}

.nav-item-with-dropdown > a {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    line-height: inherit;
}

.nav-item-with-dropdown > a::after {
    content: "▼";
    font-size: 0.5rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
    line-height: 1;
    vertical-align: middle;
    margin-left: 0.2rem;
    position: relative;
    top: -0.1em;
}

.nav-item-with-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    background-color: #1A2532;
    border: 1px solid rgba(200, 166, 120, 0.2);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    list-style: none;
    padding: 0.75rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1001;
}

.nav-item-with-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #F8F9FA;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-bottom: none;
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown a:hover {
    background-color: rgba(200, 166, 120, 0.1);
    color: #C8A678;
    opacity: 1;
}

.nav-dropdown li:last-child a {
    border-bottom: none;
}

.cta-button {
    background-color: #C8A678;
    color: #1E2A39;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #D4B589;
    transform: translateY(-1px);
    opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background-color: #1E2A39;
    color: #F8F9FA;
    padding: 6rem 0;
    position: relative;
}

.hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('chicago-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 42, 57, 0.7);
    z-index: 1;
}

.hero-fullscreen .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text-new {
    max-width: 700px;
    text-align: left;
    padding-left: 2rem;
    padding-top: 0;
    margin-top: 0;
}

.hero-title-new {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    font-size: 3.2rem;
    font-weight: 300;
    color: #F8F9FA;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-style: normal;
}

.hero-subheader-new {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #F0F0F0;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
    font-weight: 300;
    font-style: normal;
}

.hero-buttons-new {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.hero-text h1 {
    color: #F8F9FA;
    margin-bottom: 1.5rem;
}

.hero-subheader {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #E0E0E0;
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-style: normal;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #C8A678;
    color: #1E2A39;
}

.btn-primary:hover {
    background-color: #D4B589;
    transform: translateY(-2px);
    opacity: 1;
}

.btn-secondary {
    background-color: transparent;
    color: #F8F9FA;
    border: 2px solid #C8A678;
}

.btn-secondary:hover {
    background-color: #C8A678;
    color: #1E2A39;
    opacity: 1;
}

/* Regime label styles */
.regime-label-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.regime-label {
    text-align: center;
    opacity: 0.55;
}

.regime-label--current {
    color: #f6e1bf;
    opacity: 0.9;
    font-weight: 500;
}

.regime-label--future {
    color: #fde9c5;
    opacity: 1;
    font-weight: 600;
}

@media (max-width: 968px) {
    .regime-label-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* Use case action buttons */
.use-case-actions {
    margin-top: 1.25rem;
}

.use-case-need {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1A2532;
}

.use-case-how {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    border: 1px solid #C8A678;
    background: transparent;
    color: #1A2532;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline-gold:hover {
    background: #C8A678;
    color: #111827;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-gold.btn-small {
    font-size: 0.85rem;
    padding: 0.45rem 1.2rem;
}

.hero-card {
    background: linear-gradient(135deg, #2A3A4A 0%, #1E2A39 100%);
    border: 1px solid #3A4A5A;
    border-radius: 8px;
    padding: 3rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.card-content h3 {
    color: #C8A678;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.card-content p {
    color: #E0E0E0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ============================================
   PILLARS SECTION
   ============================================ */

.pillars {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    color: #1E2A39;
    margin-bottom: 0.75rem;
}

.section-subheader {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    text-align: center;
    color: #666;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    font-style: normal;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.pillar-card {
    padding: 2.5rem;
    background-color: #F8F9FA;
    border-radius: 8px;
    border-top: 4px solid #C8A678;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pillar-card h3 {
    color: #1E2A39;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pillar-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   PRODUCTS STRIP
   ============================================ */

.products-strip {
    background-color: #1E2A39;
    padding: 3rem 0;
    text-align: center;
}

.strip-text {
    color: #F8F9FA;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
    background-color: #FFFFFF;
    padding: 4rem 0;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: #F8F9FA;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-card h3 {
    color: #C8A678;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #1E2A39;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   EXPLORE SECTION (CTA GRID)
   ============================================ */

.section.explore {
    padding: 2.5rem 0;
    background-color: #FFFFFF;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #F8F9FA;
    border-radius: 8px;
    border: 1px solid #E8E8E8;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #C8A678;
    opacity: 1;
}

.cta-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8A678;
    transition: all 0.3s ease;
}

.cta-card:hover .cta-icon {
    color: #D4B589;
    transform: translateY(-3px);
}

.cta-icon svg {
    width: 100%;
    height: 100%;
}

.cta-card h3 {
    color: #1E2A39;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.cta-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background-color: #F8F9FA;
    padding: 6rem 0;
}

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

.about-text h2 {
    color: #1E2A39;
    margin-bottom: 2rem;
}

.about-text p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.infrastructure-card {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid #C8A678;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.infrastructure-card h3 {
    color: #1E2A39;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.infrastructure-card ul {
    list-style: none;
}

.infrastructure-card li {
    padding: 0.75rem 0;
    color: #555;
    font-size: 1.05rem;
    border-bottom: 1px solid #E0E0E0;
    position: relative;
    padding-left: 1.5rem;
}

.infrastructure-card li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #C8A678;
}

.infrastructure-card li:last-child {
    border-bottom: none;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8A678 0%, #B89668 100%);
    margin: 0 auto 1.5rem;
    border: 3px solid #E8E8E8;
}

.team-card h3 {
    color: #1E2A39;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-role {
    color: #C8A678;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PRODUCT SECTION - APPLE-LIKE DESIGN
   ============================================ */

/* Hero Section */
.product-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #1E2A39 0%, #1A2532 100%);
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 166, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(200, 166, 120, 0.05) 0%, transparent 50%);
    background-size: 100% 100%;
    will-change: transform;
}

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

.hero-title {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: #F8F9FA;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    font-style: normal;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #E0E0E0;
    line-height: 1.6;
    letter-spacing: 0.01em;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.scroll-indicator {
    color: #C8A678;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateY(5px);
}

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

/* Fade-in animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

.fade-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Intro Section */
.product-intro-section {
    background: linear-gradient(180deg, #1A2532 0%, #1E2A39 50%, #1A2532 100%);
    padding: 8rem 0;
    position: relative;
}

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

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    letter-spacing: 0.01em;
    font-weight: 300;
}

/* Comparison Section */
.comparison-section {
    background-color: #F8F9FA;
    padding: 8rem 0;
    position: relative;
}

.comparison-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(200, 166, 120, 0.3) 50%, transparent 100%);
    height: 100%;
    min-height: 400px;
    position: relative;
}

.comparison-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #C8A678;
    border-radius: 50%;
}

.comparison-half {
    padding: 2rem 0;
}

.comparison-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1E2A39;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.comparison-item.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.comparison-item:last-child {
    border-bottom: none;
}

.icon-x {
    color: #C44;
    font-size: 1.4rem;
    font-weight: 300;
    min-width: 24px;
}

.icon-check {
    color: #C8A678;
    font-size: 1.2rem;
    font-weight: 500;
    min-width: 24px;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(180deg, #1E2A39 0%, #1A2532 50%, #1E2A39 100%);
    padding: 8rem 0;
}

.benefits-section .section-title {
    color: #F8F9FA;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1E2A39;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(200, 166, 120, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.benefit-panel:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(200, 166, 120, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: #F8F9FA;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #E0E0E0;
    letter-spacing: 0.01em;
    font-weight: 300;
}

/* Strategies Section */
.strategies-section-new {
    background-color: #1E2A39;
    padding: 8rem 0;
    position: relative;
}

.strategies-section-new .section-title {
    color: #F8F9FA;
}

.strategies-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-panel {
    text-align: center;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.strategy-panel:hover {
    transform: translateY(-10px);
}

.strategy-visual {
    margin-bottom: 2.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategy-shape {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 166, 120, 0.2) 0%, rgba(200, 166, 120, 0.05) 100%);
    position: relative;
    transition: all 0.4s ease;
}

.strategy-panel:hover .strategy-shape {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(200, 166, 120, 0.3) 0%, rgba(200, 166, 120, 0.1) 100%);
}

.shape-tortoise::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid #C8A678;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 3s linear infinite;
}

.shape-einstein::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid #C8A678;
    border-radius: 8px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.shape-hare::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #C8A678;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.strategy-name {
    font-size: 2rem;
    font-weight: 300;
    color: #F8F9FA;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.strategy-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #E0E0E0;
    letter-spacing: 0.01em;
    font-weight: 300;
}

/* CTA Section */
.product-cta-section {
    background: linear-gradient(180deg, #1E2A39 0%, #1A2532 100%);
    padding: 6rem 0;
}

.cta-content {
    text-align: center;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #C8A678;
    color: #1E2A39;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button-large:hover {
    background-color: #D4B589;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 166, 120, 0.3);
}

/* Product Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .comparison-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .comparison-divider {
        width: 100%;
        height: 1px;
        min-height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(200, 166, 120, 0.3) 50%, transparent 100%);
    }

    .comparison-divider::before {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .strategies-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .product-hero {
        padding: 6rem 0 3rem;
        min-height: 80vh;
    }

    .product-intro-section,
    .comparison-section,
    .benefits-section,
    .strategies-section-new {
        padding: 4rem 0;
    }

    .benefit-panel {
        padding: 2rem;
    }

    .strategy-panel {
        padding: 2rem 1rem;
    }
}

/* ============================================
   ADVISOR BENEFITS SECTION
   ============================================ */

.advisor-benefits {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #C8A678;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-card h4 {
    color: #1E2A39;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */

.resources {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.resource-card {
    background-color: #F8F9FA;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #C8A678;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
    color: #1E2A39;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.resource-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background-color: #1A2532;
    color: #F8F9FA;
    padding: 6rem 0;
}

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

.contact-text h2 {
    color: #F8F9FA;
    margin-bottom: 1.5rem;
}

.contact-text p {
    color: #E0E0E0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form-wrapper {
    background-color: #2A3A4A;
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: #F8F9FA;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #3A4A5A;
    border-radius: 4px;
    background-color: #1E2A39;
    color: #F8F9FA;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C8A678;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #1A2532;
    color: #E0E0E0;
    padding: 2.5rem 0;
    text-align: center;
}

.footer p {
    font-size: 0.95rem;
    margin: 0;
    color: #B0B0B0;
}

/* ============================================
   INVESTOR TYPE GATE MODAL
   ============================================ */

#investor-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(26, 37, 50, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.investor-gate-content {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 3rem 4rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.4s ease;
}

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

.investor-gate-title {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    font-size: 2.5rem;
    color: #1A2532;
    margin-bottom: 1rem;
    font-weight: 700;
}

.investor-gate-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.investor-gate-button {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem 2.5rem;
    font-size: 1.1rem;
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    border: 2px solid #C8A678;
    background: transparent;
    color: #1A2532;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

.investor-gate-button:hover {
    background: #C8A678;
    color: #F8F9FA;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 166, 120, 0.3);
}

.investor-gate-button:active {
    transform: translateY(0);
}

/* Investor Type Indicator in Nav */
.investor-type-indicator {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 166, 120, 0.3);
    white-space: nowrap;
    margin: 0;
}

.investor-type-indicator.retail {
    background: rgba(200, 166, 120, 0.1);
    color: #C8A678;
}

.investor-type-indicator.institutional {
    background: rgba(200, 166, 120, 0.2);
    color: #D4B589;
    border-color: #C8A678;
}

.investor-type-indicator:hover {
    background: rgba(200, 166, 120, 0.25);
    border-color: #C8A678;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .investor-gate-content {
        padding: 2rem 2.5rem;
    }

    .investor-gate-title {
        font-size: 2rem;
    }

    .investor-gate-buttons {
        flex-direction: column;
    }

    .investor-gate-button {
        min-width: 100%;
    }

    .investor-type-indicator {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-left {
        order: 1;
    }
    

    .nav-right {
        order: 2;
        margin-left: 0;
    }

    .nav-links {
        gap: 1.5rem;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .cta-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pillars-grid,
    .team-grid,
    .strategies-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

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

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-left {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    

    .nav-right {
        width: 100%;
        justify-content: space-between;
        margin-top: 0.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        width: 100%;
    }

    /* Mobile: Show dropdown as nested list */
    .nav-item-with-dropdown > a::after {
        content: "▶";
        transform: rotate(0deg);
    }

    .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background-color: transparent;
        margin-top: 0.5rem;
        margin-left: 1rem;
        padding: 0.5rem 0;
        min-width: auto;
    }

    .nav-item-with-dropdown:hover .nav-dropdown {
        transform: none;
    }

    .nav-dropdown a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-fullscreen {
        min-height: 100vh;
        padding: 0;
    }

    .hero-subheader {
        font-size: 1.1rem;
    }

    .hero-card {
        padding: 2rem;
        min-height: 250px;
    }
}

/* ============================================
   PORTFOLIO SIMULATOR
   ============================================ */

.simulator-section {
    background-color: #1E2A39;
    padding: 2rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.simulator-title {
    color: #E0E0E0;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    text-align: left;
    opacity: 0.7;
}

.simulator-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.simulator-controls {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: fit-content;
    backdrop-filter: blur(10px);
}

.control-section {
    margin-bottom: 2rem;
}

.control-section:last-of-type {
    margin-bottom: 0;
}

.control-section h3 {
    color: #E0E0E0;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.assumptions {
    color: #B0B0B0;
    font-size: 0.8rem;
    line-height: 1.6;
}

.assumptions p {
    margin-bottom: 0.4rem;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    color: #E0E0E0;
    font-size: 0.8rem;
    font-weight: 400;
}

.slider-value {
    color: #C8A678;
    font-weight: 500;
    font-size: 0.85rem;
}

.slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 0.4rem;
    transition: background 0.2s ease;
}

.slider:hover {
    background: rgba(255, 255, 255, 0.15);
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #C8A678;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slider::-webkit-slider-thumb:hover {
    background: #D4B589;
    transform: scale(1.15);
}

.slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #C8A678;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slider::-moz-range-thumb:hover {
    background: #D4B589;
    transform: scale(1.15);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #888;
    margin-top: 0.2rem;
}

.slider-note {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.4rem;
    font-style: italic;
}

.allocation-summary {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 1.2rem;
    border-radius: 4px;
    border-left: 2px solid #C8A678;
    margin-top: 1.5rem;
}

.allocation-summary h3 {
    color: #E0E0E0;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.allocation-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.allocation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.allocation-label {
    color: #B0B0B0;
}

.allocation-value {
    color: #E0E0E0;
    font-weight: 500;
}

.simulator-chart {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 600px;
    position: relative;
}

.simulator-chart canvas {
    background-color: transparent;
}

.simulator-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.metric-card.featured {
    border: 1px solid rgba(200, 166, 120, 0.3);
    background-color: rgba(200, 166, 120, 0.05);
}

.metric-card h3 {
    color: #E0E0E0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
    font-weight: 500;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-item:last-child {
    border-bottom: none;
}

.metric-label {
    color: #B0B0B0;
    font-size: 0.8rem;
}

.metric-value {
    color: #E0E0E0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Simulator Responsive */
@media (max-width: 968px) {
    .simulator-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .simulator-chart {
        height: 400px;
    }

    .simulator-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .simulator-section {
        padding: 1.5rem 0 3rem;
    }

    .simulator-controls {
        padding: 1.2rem;
    }

    .simulator-chart {
        padding: 1rem;
        height: 300px;
    }

    .metric-card {
        padding: 1.2rem;
    }

    .simulator-layout {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   GLOBAL PAGE REDESIGNS - APPLE-LIKE AESTHETIC
   ============================================ */

/* About Page Redesign */
.team-section-new {
    background: linear-gradient(180deg, #1E2A39 0%, #1A2532 100%);
    padding: 8rem 0;
    position: relative;
}

.team-section-new .section-title {
    color: #F8F9FA;
    margin-bottom: 5rem;
}

.team-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-panel {
    text-align: center;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-panel:hover {
    transform: translateY(-8px);
}

.avatar-new {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 166, 120, 0.2) 0%, rgba(200, 166, 120, 0.05) 100%);
    margin: 0 auto 2rem;
    border: 2px solid rgba(200, 166, 120, 0.3);
    transition: all 0.4s ease;
}

.team-panel:hover .avatar-new {
    border-color: rgba(200, 166, 120, 0.5);
    transform: scale(1.05);
}

.team-name {
    font-size: 1.8rem;
    font-weight: 300;
    color: #F8F9FA;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    text-align: center;
}

.team-role-new {
    color: #C8A678;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
}

.team-bio-new {
    color: #E0E0E0;
    font-size: 0.95rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
    font-weight: 300;
}

.about-section-new {
    background: linear-gradient(180deg, #1A2532 0%, #1E2A39 60%, #1A2532 100%);
    padding: 8rem 0;
    position: relative;
}

.about-paragraph-white {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #F8F9FA;
    letter-spacing: 0.01em;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.about-title {
    color: #F8F9FA;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-content-new {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    font-weight: 300;
    color: #F8F9FA;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-paragraph {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #F8F9FA;
    letter-spacing: 0.01em;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.infrastructure-panel {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(200, 166, 120, 0.2);
}

.infrastructure-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #C8A678;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.infrastructure-list {
    list-style: none;
    padding: 0;
}

.infrastructure-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.infrastructure-item:last-child {
    border-bottom: none;
}

.infrastructure-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.2s ease;
}

.infrastructure-item-header:hover {
    opacity: 0.8;
}

.infrastructure-item-header span:first-child {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 300;
}

.infrastructure-item-header::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #C8A678;
    font-size: 1rem;
}

.dropdown-caret {
    color: #C8A678;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.infrastructure-item.is-open .dropdown-caret {
    transform: rotate(180deg);
}

.infrastructure-dropdown {
    max-height: 0;
    overflow: hidden;
    color: #FFFFFF;
    font-size: 0.9rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 300;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
    opacity: 0;
}

.infrastructure-item.is-open .infrastructure-dropdown {
    max-height: 200px;
    padding: 1rem 1.5rem 0;
    opacity: 1;
}

/* Resources Page Redesign */
.resources-section-new {
    background: linear-gradient(180deg, #1E2A39 0%, #1A2532 40%, #1E2A39 100%);
    padding: 8rem 0;
}

.resources-section-new .section-title {
    color: #F8F9FA;
    margin-bottom: 2rem;
}

.resources-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #F0F0F0;
    letter-spacing: 0.01em;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.resources-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(200, 166, 120, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-panel:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(200, 166, 120, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.resource-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #F8F9FA;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.resource-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #E0E0E0;
    letter-spacing: 0.01em;
    font-weight: 300;
}

/* Contact Page Redesign */
.contact-section-new {
    background: linear-gradient(180deg, #1E2A39 0%, #1A2532 100%);
    padding: 8rem 0 4rem 0;
}

.contact-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #F8F9FA;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    letter-spacing: 0.01em;
    font-weight: 300;
}

.contact-form-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
}

.form-group-new label {
    color: #E0E0E0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.form-group-new input,
.form-group-new textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #F8F9FA;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    font-weight: 300;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: #C8A678;
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group-new textarea {
    resize: vertical;
    min-height: 120px;
}

/* Honeypot field - hidden from users but visible to bots */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

/* HubSpot Form Styling - Enhanced to match site design */
.hs-form-frame {
    width: 100%;
}

/* Form container */
.hs-form,
form.hs-form {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif !important;
}

/* Form field groups */
.hs-form-field {
    margin-bottom: 1.5rem !important;
}

/* Labels */
.hs-form-field label,
.hs-form-field > label,
.hs-form-field label span {
    color: #E0E0E0 !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: 0.3px !important;
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif !important;
}

.hs-form-field label .hs-form-required {
    color: #C8A678 !important;
}

/* Input fields */
.hs-form-field input[type="text"],
.hs-form-field input[type="email"],
.hs-form-field input[type="tel"],
.hs-form-field input[type="number"],
.hs-form-field textarea,
.hs-form-field select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #F8F9FA !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif !important;
    font-weight: 300 !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}

.hs-form-field textarea {
    resize: vertical !important;
    min-height: 120px !important;
}

/* Input focus states */
.hs-form-field input[type="text"]:focus,
.hs-form-field input[type="email"]:focus,
.hs-form-field input[type="tel"]:focus,
.hs-form-field input[type="number"]:focus,
.hs-form-field textarea:focus,
.hs-form-field select:focus {
    border-color: #C8A678 !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(200, 166, 120, 0.1) !important;
}

/* Placeholder text */
.hs-form-field input::placeholder,
.hs-form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
}

/* Submit button */
.hs-button,
input[type="submit"].hs-button,
button.hs-button {
    background-color: #C8A678 !important;
    color: #1E2A39 !important;
    padding: 1.2rem 3rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 0.5rem !important;
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif !important;
    width: auto !important;
}

.hs-button:hover,
input[type="submit"].hs-button:hover,
button.hs-button:hover {
    background-color: #D4B589 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(200, 166, 120, 0.3) !important;
}

.hs-button:active,
input[type="submit"].hs-button:active,
button.hs-button:active {
    transform: translateY(0) !important;
}

/* Error messages */
.hs-error-msgs,
.hs-error-msgs label {
    color: #ff6b6b !important;
    font-size: 0.85rem !important;
    margin-top: 0.5rem !important;
    list-style: none !important;
    padding: 0 !important;
}

.hs-error-msgs li {
    color: #ff6b6b !important;
    font-size: 0.85rem !important;
    margin-top: 0.25rem !important;
}

/* Input error state */
.hs-form-field.hs-error input,
.hs-form-field.hs-error textarea,
.hs-form-field.hs-error select {
    border-color: #ff6b6b !important;
}

/* Success message */
.hs-submit-success,
.submitted-message {
    color: #4ade80 !important;
    font-size: 1rem !important;
    margin-top: 1rem !important;
    padding: 1rem !important;
    background-color: rgba(74, 222, 128, 0.1) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(74, 222, 128, 0.2) !important;
}

/* Form description/help text */
.hs-form-description {
    color: #B0B0B0 !important;
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
}

/* Hide HubSpot branding if present */
.hs-form .hs-form-footer .hs-powered-by {
    display: none !important;
}

/* Overall form text color */
.hs-main-font-element,
.hs-form,
form.hs-form {
    color: #E0E0E0 !important;
}

.btn-contact {
    padding: 1.2rem 3rem;
    background-color: #C8A678;
    color: #1E2A39;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-contact:hover {
    background-color: #D4B589;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 166, 120, 0.3);
}

/* ============================================
   REBUILT PORTFOLIO SIMULATOR - APPLE-LIKE
   ============================================ */

.simulator-page {
    background-color: #1E2A39;
    padding: 2rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.simulator-label {
    display: none;
}

/* Chart Container - Dominates the Page */
.simulator-chart-container {
    width: 100%;
    margin-bottom: 3rem;
    position: relative;
    overflow: visible;
}

.simulator-controls-new {
    position: sticky;
    top: 100px;
}

.control-group {
    margin-bottom: 2.5rem;
}

.control-label-small {
    color: #B0B0B0;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.assumptions-minimal {
    color: #E0E0E0;
    font-size: 0.8rem;
    line-height: 1.8;
    font-weight: 300;
}

.assumptions-minimal div {
    margin-bottom: 0.5rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.slider-label-minimal {
    color: #E0E0E0;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.slider-value-minimal {
    color: #C8A678;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.slider-premium {
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 0.5rem;
    transition: background 0.3s ease;
    cursor: pointer;
}

.slider-premium:hover {
    background: rgba(255, 255, 255, 0.12);
}

.slider-premium::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #C8A678;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(200, 166, 120, 0.4);
    border: 2px solid #1E2A39;
}

.slider-premium::-webkit-slider-thumb:hover {
    background: #D4B589;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(200, 166, 120, 0.6);
}

.slider-premium::-webkit-slider-thumb:active {
    transform: scale(1.1);
}

.slider-premium::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #C8A678;
    cursor: pointer;
    border: 2px solid #1E2A39;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(200, 166, 120, 0.4);
}

.slider-premium::-moz-range-thumb:hover {
    background: #D4B589;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(200, 166, 120, 0.6);
}

.slider-markers {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #666;
    margin-top: 0.3rem;
    font-weight: 300;
}

.slider-note-minimal {
    font-size: 0.7rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
    font-weight: 300;
}

.allocation-panel {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 2rem;
}

.allocation-title-minimal {
    color: #E0E0E0;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.allocation-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.allocation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.allocation-label-minimal {
    color: #B0B0B0;
    font-weight: 300;
}

.allocation-value-minimal {
    color: #E0E0E0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.simulator-chart-new {
    background: transparent;
    padding: 2rem;
    height: 70vh;
    min-height: 600px;
    position: relative;
    width: 100%;
    overflow: visible;
}

.simulator-chart-new canvas {
    background-color: transparent;
    width: 100% !important;
    height: 100% !important;
    display: block;
    position: relative;
}

/* Chart Header Row - Title and Allocation Box Side by Side */
.chart-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 0 2rem;
    gap: 2rem;
}

/* Chart Title - Left Side */
.chart-title-overlay {
    flex: 1;
    color: #C8A678;
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    margin-top: -20px;
    text-align: left;
    line-height: 1.3;
}

/* Allocation Box - Right Side */
.allocation-overlay {
    flex-shrink: 0;
    background: rgba(30, 42, 57, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 166, 120, 0.3);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-width: 280px;
    width: 320px;
}

.allocation-overlay .allocation-title-minimal {
    color: #C8A678;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(200, 166, 120, 0.2);
    padding-bottom: 0.75rem;
}

.allocation-overlay .allocation-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.allocation-overlay .allocation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.allocation-overlay .allocation-label-minimal {
    color: #E0E0E0;
    font-size: 0.8rem;
    font-weight: 300;
}

.allocation-overlay .allocation-value-minimal {
    color: #C8A678;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Bottom Control Bar */
.simulator-control-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.control-bar-item {
    display: flex;
    flex-direction: column;
}

.control-bar-item .slider-header {
    margin-bottom: 0.75rem;
}

.control-bar-item .slider-note-minimal {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #B0B0B0;
}

/* Assumptions Notation */
.assumptions-notation {
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.6;
    text-align: left;
    opacity: 0.7;
    margin-bottom: 3rem;
    padding-left: 0;
}

/* Responsive Styles for Simulator */
@media (max-width: 968px) {
    .simulator-control-bar {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chart-header-row {
        flex-direction: column;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }
    
    .chart-title-overlay {
        font-size: 1.5rem;
        margin-top: -15px;
    }
    
    .allocation-overlay {
        width: 100%;
        min-width: auto;
        padding: 1.25rem;
    }
    
    .simulator-chart-new {
        height: 60vh;
        min-height: 500px;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 640px) {
    .chart-header-row {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .chart-title-overlay {
        font-size: 1.25rem;
        margin-top: -10px;
    }
    
    .allocation-overlay {
        width: 100%;
        min-width: auto;
        padding: 1rem;
    }
    
    .allocation-overlay .allocation-title-minimal {
        font-size: 0.8rem;
    }
    
    .allocation-overlay .allocation-label-minimal,
    .allocation-overlay .allocation-value-minimal {
        font-size: 0.75rem;
    }
    
    .simulator-chart-new {
        height: 50vh;
        min-height: 400px;
        padding: 1.5rem 0.75rem;
    }
    
    .assumptions-notation {
        font-size: 0.7rem;
    }
}

.simulator-metrics-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.metric-panel {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.metric-panel:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.metric-panel-featured {
    border-color: rgba(200, 166, 120, 0.3);
    background: rgba(200, 166, 120, 0.05);
}

.metric-panel-featured:hover {
    background: rgba(200, 166, 120, 0.08);
    border-color: rgba(200, 166, 120, 0.4);
}

.metric-title-minimal {
    color: #E0E0E0;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label-minimal {
    color: #B0B0B0;
    font-size: 0.85rem;
    font-weight: 300;
}

.metric-value-minimal {
    color: #E0E0E0;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Simulator Responsive */
@media (max-width: 968px) {
    .simulator-layout-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .simulator-controls-new {
        position: static;
    }

    .simulator-chart-new {
        height: 450px;
    }

    .simulator-metrics-new {
        grid-template-columns: 1fr;
    }

    .team-grid-new,
    .resources-grid-new {
        grid-template-columns: 1fr;
    }

    .about-content-new,
    .contact-content-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .simulator-page {
        padding: 2rem 0 4rem;
    }

    .simulator-chart-new {
        height: 350px;
        padding: 1rem 0.5rem;
    }

    .metric-panel {
        padding: 1.5rem;
    }
}

/* ============================================
   HOME HERO NEW STYLES
   ============================================ */

@media (max-width: 968px) {
    .hero-text-new {
        padding-left: 0;
        max-width: 100%;
    }

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

    .hero-subheader-new {
        font-size: 1.05rem;
    }
}

@media (max-width: 640px) {
    .hero-title-new {
        font-size: 2rem;
    }

    .hero-subheader-new {
        font-size: 1rem;
    }

    .hero-buttons-new {
        flex-direction: column;
    }

    .hero-buttons-new .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   STRUCTURED PRODUCTS 101 PAGE
   ============================================ */

.product-101-intro {
    background: linear-gradient(180deg, #1E2A39 0%, #1A2532 40%, #1E2A39 100%);
    padding: 2rem 0;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
}

.intro-101-content-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.intro-title-new {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    font-size: 4.5rem;
    font-style: italic;
    font-weight: normal;
    color: #C8A678;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-align: left;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.intro-text-new {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.9;
    color: #F0F0F0;
    letter-spacing: 0.01em;
    font-weight: 300;
    text-align: left;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    max-width: 900px;
}

/* Responsive adjustments for intro */
@media (max-width: 768px) {
    .intro-101-content-new {
        padding: 3rem 1.5rem;
    }
    
    .intro-title-new {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .intro-text-new {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .intro-101-content-new {
        padding: 2rem 1rem;
    }
    
    .intro-title-new {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .intro-text-new {
        font-size: 1rem;
    }
}

.text-emphasis {
    color: #C8A678;
    font-weight: 500;
}

.intro-101-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title-101 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1E2A39;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.product-101-intro .section-title-101 {
    color: #F8F9FA;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.intro-box {
    background-color: #1E2A39;
    border: 2px solid #C8A678;
    border-radius: 12px;
    padding: 3rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.intro-101-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #F0F0F0;
    letter-spacing: 0.01em;
    font-weight: 300;
    text-align: left;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.building-blocks-section {
    background: linear-gradient(180deg, #1E2A39 0%, #1A2532 50%, #1E2A39 100%);
    padding: 6rem 0;
    position: relative;
}

.building-blocks-section.scroll-gated {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.building-blocks-section.scroll-gated.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-building-blocks {
    background: linear-gradient(135deg, rgba(200, 166, 120, 0.2) 0%, rgba(200, 166, 120, 0.1) 100%);
    border: 2px solid rgba(200, 166, 120, 0.4);
}

.icon-building-blocks::before {
    content: '▣';
    font-size: 2rem;
    color: #C8A678;
    line-height: 1;
}

.icon-use-cases {
    background: linear-gradient(135deg, rgba(200, 166, 120, 0.2) 0%, rgba(200, 166, 120, 0.1) 100%);
    border: 2px solid rgba(200, 166, 120, 0.4);
}

.icon-use-cases::before {
    content: '◉';
    font-size: 2rem;
    color: #C8A678;
    line-height: 1;
}

.building-blocks-section .section-title-101 {
    color: #F8F9FA;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


.building-blocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.block-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(200, 166, 120, 0.2);
    transition: all 0.4s ease;
}

.block-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(200, 166, 120, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.block-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #F8F9FA;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.block-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #E0E0E0;
    letter-spacing: 0.01em;
    font-weight: 300;
}

.use-cases-section {
    background: linear-gradient(180deg, #1E2A39 0%, #1A2532 50%, #1E2A39 100%);
    padding: 6rem 0;
    position: relative;
}

.use-cases-section .section-header-with-icon {
    margin-bottom: 4rem;
}

.use-cases-section .section-title-101 {
    color: #F8F9FA;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(200, 166, 120, 0.2);
    transition: all 0.4s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(200, 166, 120, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.use-case-title {
    font-size: 1.4rem;
    font-weight: 300;
    color: #F8F9FA;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.use-case-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #E0E0E0;
    letter-spacing: 0.01em;
    font-weight: 300;
}

.approach-section {
    background-color: #1E2A39;
    padding: 6rem 0;
    position: relative;
}

.approach-section .section-title-101 {
    color: #F8F9FA;
    margin-bottom: 3rem;
}

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

.approach-text-block {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.approach-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #E0E0E0;
    letter-spacing: 0.01em;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

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

/* ============================================
   WHITEPAPER CARDS
   ============================================ */

.whitepapers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.whitepaper-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(200, 166, 120, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.whitepaper-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(200, 166, 120, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.whitepaper-title {
    font-size: 1.6rem;
    font-weight: 300;
    color: #F8F9FA;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.whitepaper-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #E0E0E0;
    letter-spacing: 0.01em;
    font-weight: 300;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.whitepaper-link {
    display: inline-block;
    color: #C8A678;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(200, 166, 120, 0.3);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.whitepaper-link:hover {
    color: #D4B589;
    border-bottom-color: rgba(200, 166, 120, 0.5);
    padding-right: 1rem;
}

/* ============================================
   TEAM BIO MODAL
   ============================================ */

.team-panel-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-panel-clickable:hover {
    transform: translateY(-8px);
}

.bio-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 2rem;
}

.bio-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.bio-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 42, 57, 0.9);
    backdrop-filter: blur(10px);
}

.bio-modal-content {
    position: relative;
    z-index: 2;
    background: #F8F9FA;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.bio-modal.is-open .bio-modal-content {
    transform: scale(1);
}

.bio-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #1E2A39;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
    line-height: 1;
    padding: 0;
}

.bio-modal-close:hover {
    background: rgba(30, 42, 57, 0.1);
    color: #1E2A39;
}

.bio-modal-header {
    padding: 3rem 3rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.bio-modal-name {
    font-size: 2rem;
    font-weight: 300;
    color: #1E2A39;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.bio-modal-role {
    color: #C8A678;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.bio-modal-body {
    padding: 2rem 3rem 3rem;
}

.bio-modal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    letter-spacing: 0.01em;
    font-weight: 300;
    white-space: pre-line;
}

/* Product 101 & Whitepaper Responsive */
@media (max-width: 968px) {
    .building-blocks-grid,
    .use-cases-grid,
    .whitepapers-grid {
        grid-template-columns: 1fr;
    }

    .section-title-101 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .product-101-intro,
    .building-blocks-section,
    .use-cases-section,
    .approach-section {
        padding: 4rem 0;
    }

    .section-title-101 {
        font-size: 2rem;
    }

    .block-card,
    .use-case-card,
    .whitepaper-card {
        padding: 2rem;
    }

    .bio-modal-content {
        margin: 1rem;
        max-height: 85vh;
    }

    .bio-modal-header,
    .bio-modal-body {
        padding: 2rem 1.5rem;
    }
}


/* ============================================
   APPROACH NARRATIVE - SCROLL-DRIVEN SECTION
   ============================================ */

.approach-narrative {
    position: relative;
    background-color: #F8F9FA;
    padding: 60px 0 60px;
}

/* Sticky Header */
.approach-narrative-header {
    position: sticky;
    top: 80px;
    z-index: 10;
    background-color: #F8F9FA;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(30, 42, 57, 0.1);
    transition: box-shadow 0.3s ease;
}

.approach-narrative-header.sticky-active {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.approach-narrative-title {
    font-family: "Charter", "Bitstream Charter", "Georgia", "Times New Roman", serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #1E2A39;
    text-align: center;
    margin: 0;
    letter-spacing: -0.02em;
}

.accent-new {
    color: #C8A678;
    font-style: italic;
}

/* Slide Base Styles */
.approach-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.approach-slide.is-active {
    opacity: 1;
    transform: translateY(0);
}

.approach-slide-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Intro Slide */
.approach-slide--intro {
    padding: 60px 0;
    opacity: 1;
    transform: translateY(0);
}

.approach-intro-text {
    text-align: left;
    position: relative;
    z-index: 2;
}

.approach-intro-paragraph {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.9;
    color: #1E2A39;
    max-width: 800px;
    margin: 0 auto;
}

/* New Approach Points - 3 Bullet Layout */
.new-approach-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.approach-point {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.approach-point-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.2rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.approach-point:hover .approach-point-icon {
    opacity: 0.8;
    transform: scale(1.05);
}

.approach-point-icon svg {
    width: 100%;
    height: 100%;
}

.approach-point-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.9;
    color: #1E2A39;
    margin: 0;
    flex: 1;
}

.approach-intro-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 166, 120, 0.03) 0%, rgba(30, 42, 57, 0.02) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Content Slides (2-4) */
.approach-slide-accent {
    width: 120px;
    height: 2px;
    background-color: #C8A678;
    margin-bottom: 3rem;
    opacity: 0;
    transition: opacity 0.4s ease-out 0.1s;
}

.approach-slide.is-active .approach-slide-accent {
    opacity: 1;
}

.approach-slide-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1E2A39;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.approach-slide-summary {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.approach-slide-body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
}

.approach-slide-response {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: #B89668;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 166, 120, 0.2);
    max-width: 700px;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .approach-narrative {
        padding: 80px 0 60px;
    }

    .approach-narrative-header {
        top: 70px;
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }

    .approach-narrative-title {
        font-size: 2.5rem;
    }

    .approach-slide {
        padding: 60px 0;
    }

    .approach-slide--intro {
        padding: 80px 0;
    }

    .approach-slide-heading {
        font-size: 2.25rem;
    }

    .approach-slide-summary {
        font-size: 1.15rem;
    }

    .approach-slide-body {
        font-size: 1rem;
    }

    .approach-slide-response {
        font-size: 1.5rem;
    }

    .approach-intro-paragraph {
        font-size: 1.1rem;
    }

    .new-approach-points {
        gap: 1.25rem;
    }

    .approach-point-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .approach-narrative {
        padding: 60px 0 50px;
    }

    .approach-narrative-header {
        position: relative;
        top: 0;
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }

    .approach-narrative-title {
        font-size: 2rem;
    }

    .approach-slide {
        padding: 50px 0;
    }

    .approach-slide--intro {
        padding: 60px 0;
    }

    .approach-slide-content {
        padding: 0 1.5rem;
    }

    .approach-slide-heading {
        font-size: 1.75rem;
    }

    .approach-slide-summary {
        font-size: 1.05rem;
    }

    .approach-slide-body {
        font-size: 0.95rem;
    }

    .approach-slide-response {
        font-size: 1.2rem;
    }

    .approach-intro-paragraph {
        font-size: 1rem;
    }

    .new-approach-points {
        gap: 1rem;
    }

    .approach-point {
        gap: 1rem;
    }

    .approach-point-icon {
        width: 30px;
        height: 30px;
    }

    .approach-point-text {
        font-size: 1rem;
    }

    .approach-slide-accent {
        width: 80px;
        margin-bottom: 2rem;
    }
}
