@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600&family=Patrick+Hand&display=swap');

:root {
    --bg-paper: #FAFAFA;
    --text-ink: #1A1A1A;
    --tekdi-teal: #009688;
    --sketch-gray: #E0E0E0;
    --highlight-yellow: #FFF9C4;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-paper);
    color: var(--text-ink);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.landing-navbar {
    background-color: var(--bg-paper);
    border-bottom: 2px solid var(--text-ink);
    padding: 1rem 0;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--text-ink);
}

.brand-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #666;
    margin-left: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--sketch-gray);
    border-radius: 2px;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-ink) !important;
    margin: 0 0.5rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--tekdi-teal) !important;
}

.btn-start-creating {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-ink);
    background: transparent;
    border: 2px solid var(--text-ink);
    border-radius: 2px;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s;
    box-shadow: 3px 3px 0px var(--text-ink);
}

.btn-start-creating:hover {
    background: var(--tekdi-teal);
    color: #fff;
    border-color: var(--tekdi-teal);
    box-shadow: 3px 3px 0px var(--text-ink);
}

.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.hero-headline {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-headline .highlight {
    background: linear-gradient(180deg, transparent 50%, var(--highlight-yellow) 50%);
    padding: 0 0.25rem;
}

.hero-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-ink);
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-subtext {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn-primary-solid {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    background: var(--text-ink);
    color: #fff;
    border: 2px solid var(--text-ink);
    border-radius: 2px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary-solid:hover {
    background: var(--tekdi-teal);
    border-color: var(--tekdi-teal);
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
}

.btn-text-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-ink);
    text-decoration: none;
    border: none;
    background: transparent;
    padding: 0.75rem 0;
}

.btn-text-link:hover {
    color: var(--tekdi-teal);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.tapestry-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    position: relative;
}

.tapestry-panel {
    width: 120px;
    height: 150px;
    background: #fff;
    border: 2px solid var(--text-ink);
    box-shadow: 4px 4px 0px var(--text-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.tapestry-panel:hover {
    transform: translateY(-5px);
}

.tapestry-panel .panel-icon {
    font-size: 3rem;
}

.panel-sketch {
    width: 80px;
    height: 80px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
}

.tapestry-panel.graduate {
    transform: rotate(-5deg);
}

.tapestry-panel.runner {
    transform: rotate(3deg) translateY(-10px);
}

.tapestry-panel.worker {
    transform: rotate(-2deg);
}

.tapestry-connector {
    position: absolute;
    width: 80%;
    height: 2px;
    background: var(--tekdi-teal);
    top: 50%;
    left: 10%;
    z-index: -1;
}

.tapestry-connector::before,
.tapestry-connector::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--tekdi-teal);
    border-radius: 50%;
    top: -4px;
}

.tapestry-connector::before {
    left: 0;
}

.tapestry-connector::after {
    right: 0;
}

.cred-bar {
    background: var(--bg-paper);
    border-top: 2px solid var(--text-ink);
    border-bottom: 2px solid var(--text-ink);
    padding: 1.5rem 0;
}

.cred-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.cred-icon {
    font-size: 1.25rem;
}

.cred-sketch {
    width: 28px;
    height: 28px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.2);
}

.cred-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.how-it-works {
    padding: 5rem 0;
    background: var(--bg-paper);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.blueprint-card {
    background: #fff;
    border: 2px dashed var(--text-ink);
    padding: 2rem;
    height: 100%;
    transition: all 0.2s;
}

.blueprint-card:hover {
    box-shadow: 4px 4px 0px var(--text-ink);
    transform: translate(-2px, -2px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-sketch {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card-text {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 0.95rem;
}

.why-section {
    padding: 5rem 0;
    background: #F5F5F5;
}

.why-text {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.archetype-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.archetype-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.archetype-sketch {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
}

.project-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-bottom: 1px solid var(--sketch-gray);
}

.project-row:last-child {
    border-bottom: none;
}

.project-icon {
    font-size: 1.25rem;
}

.project-sketch {
    width: 28px;
    height: 28px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.2);
}

.project-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.group-feature {
    padding: 5rem 0;
    background: #F5F5F5;
}

.group-visual {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.mock-screen {
    width: 280px;
    background: #fff;
    border: 2px solid var(--text-ink);
    border-radius: 4px;
    box-shadow: 6px 6px 0px var(--text-ink);
    overflow: hidden;
}

.screen-header {
    background: var(--text-ink);
    padding: 0.5rem;
    display: flex;
    gap: 0.35rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.screen-content {
    padding: 1rem;
}

.user-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-bottom: 1px solid var(--sketch-gray);
}

.user-row:last-child {
    border-bottom: none;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tekdi-teal) 0%, #00796B 100%);
}

.badge-owner {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    background: var(--tekdi-teal);
    color: #fff;
    border-radius: 2px;
}

.badge-member {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    background: var(--sketch-gray);
    color: var(--text-ink);
    border-radius: 2px;
}

.group-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn-outline-dark {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: 2px solid var(--text-ink);
    border-radius: 2px;
    padding: 0.75rem 1.5rem;
}

.btn-hard-shadow {
    box-shadow: 4px 4px 0px var(--text-ink);
}

.btn-hard-shadow:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--text-ink);
}

.b2b-upsell {
    background: var(--text-ink);
    color: #fff;
    padding: 5rem 0;
}

.upsell-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.upsell-subheadline {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.upsell-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-upsell {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 2px;
    padding: 0.75rem 2rem;
    transition: all 0.2s;
}

.btn-upsell:hover {
    background: #fff;
    color: var(--text-ink);
}

.landing-footer {
    background: var(--bg-paper);
    border-top: 2px solid var(--text-ink);
    padding: 2rem 0;
}

.footer-brand {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-ink);
    text-decoration: none;
    margin-left: 1.5rem;
}

.footer-link:hover {
    color: var(--tekdi-teal);
}

.footer-disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
    font-style: normal;
    margin: 0;
}

@media (max-width: 991px) {
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-visual {
        flex-direction: column;
        margin-top: 2rem;
    }
    
    .hand-drawn-arrow {
        transform: rotate(90deg);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .group-feature .row {
        flex-direction: column-reverse;
    }
    
    .group-feature .col-lg-6:last-child {
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cred-item {
        padding: 1rem 0;
    }
    
    .footer-link {
        margin-left: 0;
        margin-right: 1rem;
    }
    
    .footer-brand, .footer-link {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
    }
}
