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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000; /* Jet Black */
    background-color: #F8F7F3; /* Ivory White */
    font-weight: 400;
    letter-spacing: 0.01em;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 247, 243, 0.95); /* Ivory White with opacity */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Imperial Gold border */
    z-index: 1000;
    padding: 20px 0;
}

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

.header-btn {
    font-size: 0.9rem;
    padding: 12px 24px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

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

.logo-image {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) saturate(100%); /* Make logo Jet Black */
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #D4AF37; /* Imperial Gold */
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-text:hover {
    color: #B76E79; /* Rose Gold on hover */
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8F7F3 0%, #E5D3B3 100%); /* Ivory to Champagne */
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: -0.02em;
}

.hero-title-simple {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
}

.hero-title-line:first-child {
    color: #000000; /* Jet Black */
}

.hero-title-line:last-child {
    color: #000000; /* Jet Black */
}

.gradient-text {
    background: linear-gradient(135deg, #D4AF37 0%, #B76E79 100%); /* Imperial Gold to Rose Gold */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.black-text {
    color: #000000; /* Jet Black */
}

.rotating-text {
    color: #000000; /* Jet Black */
    display: inline-block;
    min-width: 200px;
    text-align: center;
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

.rotating-text.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

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

.hero-description {
    font-size: 1.25rem;
    color: #2E2E2E; /* Gunmetal Gray */
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Hero Benefits Grid */
.hero-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 0 auto 48px;
    max-width: 1000px;
}

.benefit-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.15); /* Imperial Gold border */
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37 0%, #B76E79 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

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

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.benefit-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #000000; /* Jet Black */
    margin: 0 0 16px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.benefit-content p {
    font-size: 1rem;
    color: #2E2E2E; /* Gunmetal Gray */
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .benefit-card {
        padding: 24px;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: #000000; /* Jet Black */
    color: #F8F7F3; /* Ivory White */
    border: 2px solid #000000;
}

.btn-primary:hover {
    background: #2E2E2E; /* Gunmetal Gray */
    border-color: #2E2E2E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #000000; /* Jet Black */
    border: 2px solid #D4AF37; /* Imperial Gold */
}

.btn-secondary:hover {
    background: #D4AF37; /* Imperial Gold */
    color: #F8F7F3; /* Ivory White */
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

/* Hero Animation */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Trusted By Section */
.trusted-by {
    padding: 40px 0;
    background: #F8F7F3; /* Ivory White */
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

/* Spectrum Section */
.spectrum-section {
    padding: 60px 0;
    background: #F8F7F3; /* Ivory White */
}

.spectrum-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.spectrum-endpoint {
    flex: 0 0 280px;
}

.spectrum-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000; /* Jet Black */
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.spectrum-caption {
    font-size: 0.875rem;
    color: #2E2E2E; /* Gunmetal Gray */
    line-height: 1.4;
}

.spectrum-line-container {
    flex: 1;
    position: relative;
    height: 120px;
}

.spectrum-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.spectrum-center-point {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #F8F7F3; /* Ivory White */
    padding: 8px 16px;
    white-space: nowrap;
}

.spectrum-center-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #D4AF37; /* Imperial Gold */
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.spectrum-center-caption {
    font-size: 0.75rem;
    color: #2E2E2E; /* Gunmetal Gray */
    white-space: normal;
    max-width: 200px;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .spectrum-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .spectrum-endpoint {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .spectrum-line-container {
        order: 2;
        width: 2px;
        height: 120px;
    }
    
    .spectrum-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, transparent 0%, #D4AF37 50%, transparent 100%);
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .spectrum-center-point {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Minimalist Spectrum */
.minimalist-spectrum {
    max-width: 1000px;
    margin: 24px auto 32px;
}

.spectrum-headline {
    text-align: center;
    font-size: 1rem;
    color: #2E2E2E; /* Gunmetal Gray */
    font-style: italic;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    opacity: 0.7;
}

.spectrum-line-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.spectrum-line-main {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.5) 50%, rgba(212, 175, 55, 0.2) 100%);
}

.spectrum-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D4AF37; /* Imperial Gold */
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.spectrum-labels-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: start;
}

.spectrum-label-item:first-child {
    text-align: left;
}

.spectrum-label-item:last-child {
    text-align: right;
}

.spectrum-label-center {
    text-align: center;
    max-width: 220px;
}

.spectrum-label-main {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000; /* Jet Black */
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.spectrum-label-sub {
    font-size: 0.75rem;
    color: #2E2E2E; /* Gunmetal Gray */
    line-height: 1.4;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .spectrum-labels-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center !important;
    }
    
    .spectrum-label-item,
    .spectrum-label-center {
        text-align: center;
    }
    
    .spectrum-label-center {
        max-width: 100%;
    }
}

/* Hero Benefits Section */
.hero-benefits-section {
    padding: 40px 0;
    background: #F8F7F3; /* Ivory White - matches Trusted By section */
}

.trusted-by-text {
    text-align: center;
    color: #2E2E2E; /* Gunmetal Gray */
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.company-logo:hover {
    opacity: 1;
}

.company-logo img,
.logo-icon {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.6);
    transition: filter 0.3s ease;
}

.company-logo svg.logo-icon {
    height: 36px;
    width: auto;
    max-width: 140px;
    filter: grayscale(100%) brightness(0.6);
    transition: filter 0.3s ease;
}

.company-logo:hover img,
.company-logo:hover .logo-icon,
.company-logo:hover svg.logo-icon {
    filter: grayscale(0%) brightness(1);
}

.company-logo svg {
    height: 36px;
    width: auto;
    max-width: 140px;
    filter: grayscale(100%) brightness(0.6);
    transition: filter 0.3s ease;
}

.company-logo:hover svg {
    filter: grayscale(0%) brightness(1);
}

.company-logo svg text {
    fill: #2E2E2E;
    transition: fill 0.3s ease;
}

.company-logo:hover svg text {
    fill: #000000;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

/* Duplicate Title Section */
.duplicate-title {
    padding: 40px 0 20px 0;
    background: #F8F7F3; /* Ivory White */
    text-align: center;
}

.duplicate-description {
    font-size: 1.25rem;
    color: #2E2E2E; /* Gunmetal Gray */
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
}

/* Section Separator */
.section-separator {
    padding: 32px 0 60px 0;
    background: #F8F7F3; /* Ivory White */
}

.separator-line {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 240px;
    margin: 0 auto;
}

.separator-dot {
    width: 10px;
    height: 10px;
    background: #D4AF37; /* Imperial Gold */
    border-radius: 50%;
}

.separator-line-main {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
    margin: 0 20px;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F7F3 0%, #E5D3B3 100%);
    position: relative;
    overflow: hidden;
}

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

.mission-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2E2E2E; /* Gunmetal Gray */
    font-weight: 400;
    letter-spacing: 0.01em;
}

.application-form-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.typeform-widget {
    border-radius: 20px;
    overflow: hidden;
}

.mission-graph {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.mission-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

/* Compact Offer */
.compact-offer {
    background: linear-gradient(135deg, #F8F7F3 0%, #E5D3B3 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 48px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.offer-badge {
    background: linear-gradient(135deg, #D4AF37 0%, #B76E79 100%);
    color: #F8F7F3; /* Ivory White */
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 24px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.offer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000; /* Jet Black */
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.offer-subtitle {
    font-size: 1.125rem;
    color: #2E2E2E; /* Gunmetal Gray */
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.offer-value {
    font-size: 1rem;
    color: #2E2E2E; /* Gunmetal Gray */
    font-weight: 500;
}

/* Platform Thesis Section */
.platform-thesis {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F7F3 0%, #E5D3B3 100%);
    position: relative;
}

.platform-thesis-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.thesis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.thesis-left {
    text-align: center;
}

.thesis-right {
    text-align: left;
}

.platform-thesis-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: #000000; /* Jet Black */
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    letter-spacing: -0.02em;
}

.thesis-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 32px;
}

.whitepaper-btn {
    font-size: 1.125rem;
    padding: 16px 32px;
}

.thesis-buttons .btn {
    width: 220px;
    text-align: center;
}

.thesis-text {
    text-align: left;
    max-width: 100%;
}

.thesis-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2E2E2E; /* Gunmetal Gray */
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

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

/* Executive Intro Section */
.executive-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
}

.executive-intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000000; /* Jet Black */
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.executive-intro-description {
    font-size: 1.125rem;
    color: #2E2E2E; /* Gunmetal Gray */
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Executive Benefits Section */
.executive-benefits {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.executive-benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.executive-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

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

.executive-item:hover {
    padding-left: 16px;
    border-left: 2px solid #D4AF37;
}

.executive-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #D4AF37; /* Imperial Gold */
    display: block;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.executive-description {
    font-size: 1rem;
    color: #2E2E2E; /* Gunmetal Gray */
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.01em;
}


/* Footer */
.footer {
    background: #000000; /* Jet Black */
    color: #F8F7F3; /* Ivory White */
    padding: 60px 0;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-simple p {
    color: #E5D3B3; /* Champagne Beige */
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    color: #E5D3B3; /* Champagne Beige */
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: #D4AF37; /* Imperial Gold */
}

.separator {
    color: #E5D3B3; /* Champagne Beige */
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .executive-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-thesis-title {
        font-size: 2.5rem;
    }
    
    .executive-card {
        margin: 0 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        margin-top: 60px;
        padding: 80px 0 60px;
    }
    
    .hero-title,
    .hero-title-simple {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 180px;
    }
    
    .logo-track {
        gap: 36px;
    }
    
    .company-logo img {
        height: 28px;
        max-width: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .mission-text {
        font-size: 1.125rem;
    }
    
    .platform-thesis-title {
        font-size: 2rem;
    }
    
    .executive-intro-title {
        font-size: 2rem;
    }
    
    .executive-intro-description {
        font-size: 1.125rem;
    }
    
    .executive-item {
        padding: 32px 0;
    }
    
    .executive-label {
        font-size: 1.5rem;
    }
    
    .executive-description {
        font-size: 1rem;
    }
    
    .thesis-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .thesis-left {
        text-align: center;
    }
    
    .thesis-right {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title,
    .hero-title-simple {
        font-size: 2rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .executive-card {
        padding: 24px 16px;
    }
    
    .footer-simple {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .platform-thesis-title {
        font-size: 1.75rem;
    }
    
    .mission {
        padding: 60px 0;
    }
    
    .compact-offer {
        padding: 24px;
        margin-bottom: 32px;
    }
    
    .offer-title {
        font-size: 1.5rem;
    }
    
    .offer-subtitle {
        font-size: 1rem;
    }
}