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

:root {
    --black: #000000;
    --dark-gray: #0a0a0a;
    --gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --white: #ffffff;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-dark: #2563eb;
    --accent-glow: rgba(59, 130, 246, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
.apply-hero {
    padding: 4rem 0 2rem;
}

.apply-form-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, var(--black) 0%, #0b0b0f 100%);
}

.calendly-embed-wrapper {
    margin-top: 2rem;
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(31, 41, 55, 0.9));
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.02);
}
    overflow-x: hidden;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Section Animations */
section {
    opacity: 0;
    animation: fadeInSection 1s ease forwards;
}

@keyframes fadeInSection {
    to {
        opacity: 1;
    }
}

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

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 2rem 0 4rem;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-content-full {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo-top {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.hero-logo-top img {
    max-width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.2));
}

.hero-content-modern {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}


.hero-logo-modern {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-logo-modern img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.2));
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    min-height: 400px;
}

.hero-text-container .hero-badge {
    order: 1;
}

.hero-text-container .hero-title-modern {
    order: 2;
}

.hero-text-container .hero-features-inline {
    order: 3;
}

.hero-text-container .hero-cta-buttons {
    order: 4;
    margin-top: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 100px;
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    width: fit-content;
}

.hero-title-modern {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-align: left;
}

.hero-features-inline {
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 2rem;
    margin: 0;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    white-space: nowrap;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: left;
    width: 100%;
}

.hero-apply-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.hero-apply-button:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.hero-apply-button i {
    transition: transform 0.4s ease;
}

.hero-apply-button:hover i {
    transform: translateX(4px);
}

.hero-feature-item i {
    color: var(--accent);
    font-size: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
    height: fit-content;
}

.hero-visual-card {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    margin-top: calc(4rem + 1.5rem + 0.5rem + 1rem);
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.hero-visual-icon {
    position: relative;
    z-index: 1;
}

.hero-visual-icon i {
    font-size: 4rem;
    color: var(--accent);
    animation: float 3s ease-in-out infinite;
}

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

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-logo img {
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.highlight {
    color: var(--accent);
    position: relative;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-subtitle strong {
    color: var(--accent-light);
    font-weight: 600;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.hero-feature-item i {
    color: var(--accent-light);
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.hero-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

.hero-button-primary i {
    transition: transform 0.4s ease;
}

.hero-button-primary:hover i {
    transform: translateX(4px);
}

.hero-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
}

.hero-button-secondary:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    transform: translateY(-2px);
}

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

/* Founders Photo */
.founders-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-photo {
    position: relative;
    width: 200%;
    max-width: 1200px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.founder-photo img {
    width: 200%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5));
}

.founder-photo:hover img {
    transform: scale(1.02);
    filter: drop-shadow(0 20px 60px rgba(59, 130, 246, 0.3));
}

.founders-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: pulse-glow 3s ease-in-out infinite;
}

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

/* Main System Section */
.main-system {
    padding: 6rem 0;
    background-color: var(--dark-gray);
}

/* Founders Section */
.founders-section {
    padding: 6rem 0;
    background-color: var(--black);
}

.founders-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.founders-photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founders-photo-container .founder-photo {
    max-width: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founders-photo-container .founder-photo:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.3);
}

.founders-photo-container .founder-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.founders-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.founders-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1rem;
}

.founders-names-container {
    margin-top: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.founders-names-container .founders-names {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0.75rem 0;
    line-height: 1.5;
}

.system-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Icon Wrappers */
.icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 16px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--accent-light);
    transition: all 0.4s ease;
}

.icon-wrapper:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.icon-wrapper:hover i {
    transform: scale(1.1);
    color: var(--accent);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 18px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--accent-light);
    transition: all 0.4s ease;
}

.feature-split:hover .feature-icon-wrapper,
.feature-minimal:hover .feature-icon-wrapper,
.feature-grid-section:hover .feature-icon-wrapper,
.feature-side-by-side:hover .feature-icon-wrapper,
.feature-highlight:hover .feature-icon-wrapper,
.feature-flow:hover .feature-icon-wrapper,
.feature-simple:hover .feature-icon-wrapper {
    transform: translateY(-4px) rotate(5deg);
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.feature-split:hover .feature-icon-wrapper i,
.feature-minimal:hover .feature-icon-wrapper i,
.feature-grid-section:hover .feature-icon-wrapper i,
.feature-side-by-side:hover .feature-icon-wrapper i,
.feature-highlight:hover .feature-icon-wrapper i,
.feature-flow:hover .feature-icon-wrapper i,
.feature-simple:hover .feature-icon-wrapper i {
    transform: scale(1.1);
    color: var(--accent);
}

.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.3);
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.cta-icon-wrapper i {
    font-size: 2rem;
    color: var(--accent-light);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

.system-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.system-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* What You're Buying Section */
.what-you-buy {
    padding: 6rem 0;
    background-color: var(--dark-gray);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.system-flow {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray) 0%, #1f1f1f 100%);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.system-flow strong {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Component Sections */
.component-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.component-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.component-number {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 100%);
    border: 2px solid rgba(59, 130, 246, 0.45);
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.component-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.component-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.component-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.component-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.extraction-item {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--gray) 0%, #1f1f1f 100%);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.extraction-item:hover {
    transform: translateX(4px);
    border-left-color: var(--accent-light);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.component-outcome {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
}

.component-outcome strong {
    color: var(--accent-light);
}

.component-result {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--gray) 0%, #1f1f1f 100%);
    border-radius: 12px;
    border: 1px solid var(--light-gray);
}

.component-result strong {
    color: var(--accent-light);
}

.component-bonus {
    background: linear-gradient(135deg, var(--gray) 0%, #1f1f1f 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--accent);
    box-shadow: 0 8px 32px var(--accent-glow);
}

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

.pipeline-item {
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--gray) 100%);
    border-radius: 12px;
    border-left: 3px solid var(--accent-light);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.pipeline-item:hover {
    transform: translateX(4px);
    border-left-color: var(--accent);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

/* Summary Section */
.summary-section {
    padding: 6rem 0;
    background-color: var(--dark-gray);
}

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

.summary-card {
    background: linear-gradient(135deg, var(--gray) 0%, #1f1f1f 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--light-gray);
}

.summary-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 1rem;
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.summary-item {
    color: var(--text-secondary);
}

.summary-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.summary-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.75rem;
}

.summary-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.summary-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-weight: bold;
}

/* Transformation Section */
.transformation-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 20% 20%, rgba(59,130,246,0.10), transparent 32%), radial-gradient(circle at 80% 0%, rgba(96,165,250,0.12), transparent 30%), linear-gradient(180deg, var(--black) 0%, #0b0b0f 100%);
}

.transformation-intro {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
}

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

.transformation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(31, 41, 55, 0.9));
    border-radius: 14px;
    border: 1px solid rgba(59, 130, 246, 0.28);
    box-shadow: 0 18px 42px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.02);
    transition: all 0.35s ease;
}

.transformation-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 14px 32px rgba(59, 130, 246, 0.28);
}

.transformation-item i {
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.transformation-item span {
    font-size: 1.02rem;
    color: var(--text-primary);
    font-weight: 500;
}

.transformation-final {
    font-size: 1.55rem;
    font-weight: 700;
    text-align: center;
    margin-top: 3rem;
    padding: 2.25rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(96,165,250,0.1));
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: var(--text-primary);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

/* New Problem Statement Layout */
.problem-statement-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.founders-info {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    width: 100%;
}

.founders-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.founders-names {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0.5rem 0;
    line-height: 1.4;
}

.problem-text-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-main {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.problem-sub {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.4;
}

.problem-sub-accent {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
}

.problem-solution {
    padding: 3rem;
    background: linear-gradient(135deg, var(--gray) 0%, #1f1f1f 100%);
    border-radius: 20px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.solution-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Decorative Underline for System Name */
.system-name-underline {
    display: inline-block;
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
    font-size: 1.3em;
}

/* Founders Section */
.founders-section {
    padding: 4rem 0;
    background-color: var(--black);
}

.founders-header {
    text-align: center;
    margin-bottom: 3rem;
}

.founders-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.founders-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.founders-section .founders-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 520px;
    margin: 0 auto;
}

.founders-section .founder-photo {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    transition: transform 0.3s ease;
}

.founders-section .founder-photo:hover {
    transform: translateY(-2px);
}

.founders-section .founder-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Diagnose Section */
.diagnose-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 10% 20%, rgba(59,130,246,0.12), transparent 35%), radial-gradient(circle at 80% 0%, rgba(96,165,250,0.14), transparent 32%), linear-gradient(180deg, var(--dark-gray) 0%, #0b0b0f 100%);
}

.diagnose-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 1.5rem 0 1.5rem;
    max-width: 800px;
}

.diagnose-benefits {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0 0 2.5rem;
    max-width: 800px;
    line-height: 1.7;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
}

.diagnose-benefits strong {
    color: var(--accent-light);
    font-weight: 600;
}

.diagnose-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.diagnose-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.35);
}

.diagnose-toggle.hidden {
    display: none;
}

.diagnose-form.collapsed {
    display: none;
}

.diagnose-form,
.weekly-email-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(31, 41, 55, 0.9));
    padding: 2.25rem;
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.02);
    backdrop-filter: blur(4px);
    width: 100%;
    margin: 0 ;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: #0f172a;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.form-field select {
    min-height: 56px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-secondary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
    transform: translateY(-1px);
}

.form-field textarea {
    resize: vertical;
}

.diagnose-submit {
    align-self: flex-start;
    padding: 1rem 2.4rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.diagnose-submit:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 16px 32px rgba(59, 130, 246, 0.35);
}

.diagnose-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(15, 23, 42, 0.85);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.diagnose-close:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--accent);
    color: var(--accent-light);
}

.diagnose-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Weekly Email Section */
.weekly-email-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--black) 0%, #0b0b0f 100%);
}

.weekly-email-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 1.5rem 0 2rem;
    max-width: 780px;
}

.weekly-email-form .form-field,
.weekly-email-form .form-field input {
    width: 100%;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(59,130,246,0.10));
    border: 1px solid rgba(59,130,246,0.35);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

/* Clarification Section */
.clarification-section {
    padding: 6rem 0;
    background-color: var(--dark-gray);
}

.clarification-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.clarification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.clarification-card {
    background: linear-gradient(135deg, var(--gray) 0%, #1f1f1f 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--light-gray);
    border-left: 4px solid var(--accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.clarification-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px var(--accent-glow);
}

.clarification-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.clarification-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.clarification-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.trust-line {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-light);
}

.cta-line {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1.5rem;
}

/* Why It Matters Section */
.why-matters {
    padding: 6rem 0;
    background-color: var(--black);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}


.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
}

.content-block {
    margin-bottom: 4rem;
}

.bold-lead {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.checklist {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.checklist li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-weight: bold;
}

.frustration-line {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 1.5rem;
}

.benefits-grid {
    margin-top: 3rem;
    padding: 0;
}

.benefits-grid h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.benefit-item {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gray) 0%, #1f1f1f 100%);
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.benefit-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--accent-glow);
    background: linear-gradient(135deg, var(--light-gray) 0%, #333 100%);
}

.outcome {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    text-align: center;
}

.outcome-bold {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1rem;
    text-align: center;
}

/* System Intro Section */
.system-intro {
    padding: 6rem 0;
    background-color: var(--dark-gray);
    text-align: center;
}

.system-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    margin: 2rem 0;
    letter-spacing: -0.02em;
}

.system-tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.not-branding {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.engineering {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}

.pillar {
    padding: 2rem;
    background-color: var(--gray);
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.pillar:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px var(--accent-glow);
    background: linear-gradient(135deg, var(--gray) 0%, #222 100%);
}

.alignment {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* What's Inside Section */
.whats-inside {
    padding: 6rem 0;
    background-color: var(--black);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 700px;
    line-height: 1.7;
}

/* Clean Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.feature-card-clean {
    background: linear-gradient(135deg, var(--gray) 0%, #1f1f1f 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-clean:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px var(--accent-glow);
}

.feature-card-clean:hover::before {
    opacity: 1;
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card-clean:hover .feature-card-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.feature-card-icon i {
    font-size: 1.5rem;
    color: var(--accent-light);
    transition: all 0.4s ease;
}

.feature-card-clean:hover .feature-card-icon i {
    color: var(--accent);
    transform: scale(1.1);
}

.feature-card-clean h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-card-clean p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-card-outcome {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.feature-card-wide {
    grid-column: 1 / -1;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.voice-note-small {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.voice-note-small strong {
    color: var(--accent-light);
}

.feature-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}


.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-outcome {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1rem;
}

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

.archetype {
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.archetype:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--accent-glow);
    background: linear-gradient(135deg, var(--light-gray) 0%, #333 100%);
}

.archetype-desc {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.archetype-outcome {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
}

.profile-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.profile-element {
    padding: 0.75rem 1.5rem;
    background-color: var(--light-gray);
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.profile-element:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.coaching-desc {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

/* Walk Away Section */
.walk-away {
    padding: 6rem 0;
    background-color: var(--dark-gray);
}

.walk-away-intro {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
}

.outcomes-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.outcome-item {
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    background: transparent;
    border-left: 3px solid var(--accent);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    color: var(--text-primary);
}

.outcome-item::before {
    content: "→";
    position: absolute;
    left: 1rem;
    color: var(--accent-light);
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.outcome-item:hover {
    border-left-color: var(--accent-light);
    transform: translateX(8px);
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
}

.outcome-item:hover::before {
    transform: translateX(4px);
}

.final-message {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-secondary);
    margin-top: 3rem;
}

.final-message-bold {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-color: var(--black);
    text-align: center;
}

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

.cta-button {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

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

.cta-button i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

.cta-button:hover i {
    transform: translateX(4px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

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

    .problem-statement-new {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 0;
    }

    .founders-section {
        padding: 4rem 0;
    }

    .founders-section {
        padding: 4rem 0;
    }

    .founders-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .hero-features {
        grid-template-columns: 1fr;
    }

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

    .hero-button-primary,
    .hero-button-secondary {
        width: 100%;
        justify-content: center;
    }


    .founders-decoration {
        width: 150px;
        height: 150px;
    }

    .main-system,
    .why-matters,
    .system-intro,
    .whats-inside,
    .walk-away,
    .cta-section {
        padding: 4rem 0;
    }

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

    .feature-card-clean {
        padding: 2rem;
    }

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

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

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

    .summary-card {
        max-width: 100%;
    }

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

    .component-header {
        flex-direction: column;
        gap: 1rem;
    }

    .component-number {
        font-size: 2rem;
    }

    .founder-label {
        position: static;
        transform: none;
        margin-top: 1rem;
    }

    .problem-statement,
    .benefits-grid {
        padding: 2rem;
    }

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

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

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

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--accent);
    color: var(--white);
}

/* Voice Note Styling */
.voice-note {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    margin: 1.5rem 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.voice-note strong {
    color: var(--accent-light);
}

/* Enhanced section backgrounds */
.section-header h2 {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Add subtle animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.benefit-item,
.pillar,
.archetype,
.outcome-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

/* Gradient text for system name */
.system-name {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Free Resource Section - Unique Style */
.free-resource-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.free-resource-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.free-resource-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 32px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.free-resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

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

.free-resource-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 100px;
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.free-resource-badge i {
    font-size: 1rem;
}

.free-resource-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.free-resource-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.free-resource-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.free-resource-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.free-resource-button:hover::before {
    left: 100%;
}

.free-resource-button:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

.free-resource-button i {
    transition: transform 0.4s ease;
}

.free-resource-button:hover i {
    transform: translateX(4px);
}

.free-resource-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.free-resource-icon {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.free-resource-icon::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: pulse-ring 3s ease-in-out infinite;
}

.free-resource-icon i {
    font-size: 4rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
    }
}

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

@media (max-width: 968px) {
    .free-resource-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .free-resource-description {
        max-width: 100%;
    }
    
    .free-resource-visual {
        order: -1;
    }
    
    .free-resource-icon {
        width: 140px;
        height: 140px;
    }
    
    .free-resource-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .free-resource-section {
        padding: 4rem 0;
    }
    
    .free-resource-card {
        padding: 2.5rem 1.5rem;
    }
    
    .free-resource-title {
        font-size: 2rem;
    }
    
    .free-resource-description {
        font-size: 1rem;
    }
}

/* Apply Page Step Indicator */
/* Apply Page Back Link */
.apply-back-link {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
}

.apply-back-link a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.apply-back-link a:hover {
    color: var(--accent);
}

/* Apply Form Wrapper */
.apply-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

.apply-main-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.apply-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Inline Step Indicator */
.apply-steps-inline {
    margin: 2.5rem 0 3rem;
}

.apply-steps-inline .steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.apply-steps-inline .step-counter {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.apply-steps-inline .step-counter .current-step {
    color: var(--accent-light);
    font-weight: 700;
}

.apply-steps-section {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    border-bottom: 1px solid var(--light-gray);
}

.steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

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

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray);
    border: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

.step-item.active .step-label {
    color: var(--accent-light);
    font-weight: 600;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: var(--light-gray);
    position: relative;
    margin-top: 25px;
}

.step-item.active ~ .step-connector,
.step-item.active + .step-connector {
    background: linear-gradient(90deg, var(--accent) 0%, var(--light-gray) 100%);
}

.step-counter {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.step-counter .current-step {
    color: var(--accent-light);
    font-weight: 700;
}

.apply-contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: left;
}

.apply-contact-form .form-row {
    margin-bottom: 1.5rem;
}

.apply-contact-form .form-field {
    width: 100%;
    text-align: left;
}

.apply-contact-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: left;
}

.apply-contact-form input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--gray);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.apply-contact-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

@media (max-width: 1024px) {
    .hero-content-modern {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-title-modern {
        text-align: center;
    }
    
    .hero-features-inline {
        justify-content: center;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    .hero-badge {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .apply-back-link {
        top: 1.5rem;
        left: 1.5rem;
    }
    
    .apply-back-link a {
        font-size: 0.9rem;
    }
    
    .hero-visual-card {
        width: 150px;
        height: 150px;
    }
    
    .hero-visual-icon i {
        font-size: 3rem;
    }
    
    .steps-indicator {
        gap: 1rem;
    }
    
    .step-connector {
        width: 50px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .apply-steps-inline {
        margin: 2rem 0 2.5rem;
    }
}

