@font-face {
    font-family: 'Serrif Condensed';
    src: url('./Fonts/SerrifCondensed-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saans';
    src: url('./Fonts/SaansUprightsVF.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #fafafa;
    --bg-elevated: #ffffff;
    --bg-dark: #0a0a0a;
    --text: #0a0a0a;
    --text-inverse: #fafafa;
    --text-secondary: #3d3d3d;
    --text-muted: #666666;
    --border: #e0e0e0;
    --border-subtle: #f0f0f0;
    --max-width: 960px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Saans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 450;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Fixed background layer for scroll transition */
.bg-transition {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(20px);
    transition: background 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.nav-light {
    background: rgba(250, 250, 250, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav.nav-light .logo {
    color: var(--text);
}

nav.nav-light .nav-cta {
    background: var(--bg-dark);
    color: var(--text-inverse);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    color: var(--text-inverse);
    text-decoration: none;
    transition: color 0.4s ease;
    display: flex;
    align-items: center;
}

.logo:visited,
.logo:active,
.logo:hover {
    color: var(--text-inverse);
}

nav.nav-light .logo:visited,
nav.nav-light .logo:active,
nav.nav-light .logo:hover {
    color: var(--text);
}

.logo svg {
    height: 18px;
    width: auto;
}

.nav-cta {
    background: var(--text-inverse);
    color: var(--bg-dark);
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
}

.nav-cta:hover {
    opacity: 0.85;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    color: var(--text-inverse);
}

.hero .hero-badge {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.hero .hero-badge::before {
    background: var(--text-inverse);
}

.hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.hero .hero-subtitle span::before {
    background: var(--text-inverse);
}

.hero .hero-list li {
    color: rgba(255, 255, 255, 0.8);
}

.hero .hero-list li::before {
    background: var(--text-inverse);
    color: var(--bg-dark);
}

.hero .btn {
    background: var(--text-inverse);
    color: var(--bg-dark);
}

.hero .hero-note {
    color: rgba(255, 255, 255, 0.5);
}

.hero .hero-image-placeholder {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.4);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 24px;
    width: fit-content;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--text);
    border-radius: 50%;
}

.hero h1 {
    font-family: 'Serrif Condensed', Georgia, serif;
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-subtitle span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-subtitle span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--text);
    border-radius: 50%;
}

.hero-list {
    list-style: none;
    margin-bottom: 32px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.hero-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--bg-dark);
    color: var(--text-inverse);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn:hover {
    opacity: 0.85;
}

.btn-block {
    display: flex;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.hero-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
}

.hero-decorator {
    position: absolute;
    top: -16px;
    right: -16px;
    font-size: 40px;
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    padding: 32px 0;
}

.scroll-indicator svg {
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.5);
}

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

/* Section Styling */
section {
    padding: 80px 0;
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-align: center;
}

.section-title {
    font-family: 'Serrif Condensed', Georgia, serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    text-align: center;
}

/* Requirements Section */
.requirements-section {
    background: transparent;
}

.requirements-list {
    list-style: none;
    margin-bottom: 40px;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 15px;
    color: var(--text-secondary);
}

.requirements-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: var(--bg-dark);
    color: var(--text-inverse);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    margin-top: 1px;
}

/* Role Section */
.role-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.role-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.role-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.role-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tools Section */
.tools-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 0;
}

.tools-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 12px 20px;
}

.tool-icon {
    font-size: 20px;
}

.tool-name {
    font-size: 14px;
    font-weight: 500;
}

/* Team Section */
.team-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.team-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.team-role {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.team-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.team-note {
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Why Section */
.why-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    text-align: center;
}

.why-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.why-text p {
    margin-bottom: 20px;
}

.why-text strong {
    color: var(--text);
    font-weight: 500;
}

/* Benefits Grid */
.benefits-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.benefit-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.benefit-card:hover {
    border-color: var(--text);
}

.benefit-card-image {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
}

.benefit-card-emoji {
    width: 100%;
    height: 120px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.benefit-card-content {
    padding: 20px;
    text-align: center;
}

.benefit-card h3 {
    font-family: 'Serrif Condensed', Georgia, serif;
    font-size: 20px;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Freelance Section */
.freelance-section {
    padding: 0 0 48px;
    background: var(--bg);
}

.freelance-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 32px;
    text-align: center;
}

.freelance-box h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.freelance-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 48px 0;
    background: var(--bg);
}

/* Process Section */
.process-section {
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: 100px 0;
}

.process-section .section-label {
    color: rgba(255, 255, 255, 0.5);
}

.process-section .section-title {
    color: var(--text-inverse);
    margin-bottom: 60px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.process-step.right {
    flex-direction: row-reverse;
}

.process-step-number {
    font-family: 'Serrif Condensed', Georgia, serif;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    min-width: 50px;
}

.process-step.right .process-step-number {
    text-align: right;
}

.process-step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    flex: 1;
    max-width: 380px;
}

.process-step.right .process-step-card {
    margin-left: auto;
}

.process-step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.process-step-tag {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.process-step-card.highlight {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.process-step-card.highlight h3 {
    color: #4ade80;
}

.process-note {
    text-align: center;
    margin-top: 48px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.process-note strong {
    color: var(--text-inverse);
    font-weight: 600;
}

/* Vision Section */
.vision-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.vision-content h2 {
    font-family: 'Serrif Condensed', Georgia, serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.vision-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.vision-signature {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text);
}

.vision-signature strong {
    display: block;
    font-weight: 600;
}

.vision-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
}

.founder-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Final CTA */
.final-cta {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Serrif Condensed', Georgia, serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.final-cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.final-cta-subtitle-small {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.final-cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.final-cta-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.final-cta-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.final-cta-badge::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--text);
    border-radius: 50%;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: 48px 32px;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo svg {
    height: 18px;
    fill: var(--text-inverse);
}

.footer-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    font-size: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-inverse);
}

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

    .hero {
        padding: 120px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        flex-direction: column;
        gap: 8px;
    }

    .hero-list li {
        font-size: 14px;
    }

    .btn-block,
    .hero .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-note {
        text-align: center;
    }

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

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

    .tools-grid {
        gap: 10px;
    }

    .tool-item {
        padding: 10px 16px;
    }

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

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vision-image-placeholder {
        width: 100%;
        max-width: 100%;
    }

    .process-step {
        flex-direction: column !important;
    }

    .process-step.right .process-step-card {
        margin-left: 0;
    }

    .process-step-number {
        text-align: left !important;
    }

    section {
        padding: 60px 0;
    }

    .final-cta {
        padding: 80px 0;
    }
}
