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

:root {
    /* Light Mode Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(350, 67%, 11%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(350, 67%, 11%);
    --primary: hsl(350, 67%, 22%);
    --primary-foreground: hsl(30, 28%, 88%);
    --secondary: hsl(30, 28%, 88%);
    --secondary-foreground: hsl(350, 67%, 11%);
    --muted: hsl(30, 20%, 95%);
    --muted-foreground: hsl(350, 20%, 40%);
    --accent: hsl(90, 25%, 85%);
    --accent-foreground: hsl(350, 67%, 11%);
    --border: hsl(30, 20%, 90%);
    --radius: 0.5rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 300;
    color: var(--primary);
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 50;
}

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

.header-logo {
    height: 48px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .header-logo {
        height: 56px;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.nav-link:hover {
    color: var(--primary);
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-icon {
    width: 24px;
    height: 24px;
    stroke: var(--foreground);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.nav-mobile.active {
    display: flex;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-mobile .nav-link {
    text-align: left;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0.75),
            rgba(255, 255, 255, 0.65));
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 1rem;
}

.hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero h1 span {
    font-weight: 400;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2rem;
    font-weight: 300;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.hero-tagline {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 300;
    font-style: italic;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 1.25rem;
    }
}

/* Manifesto Section */
.manifesto {
    padding: 6rem 0;
    background-color: rgba(var(--muted), 0.3);
    background: linear-gradient(180deg, hsl(30, 20%, 97%) 0%, hsl(0, 0%, 100%) 100%);
}

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

.manifesto-icon {
    height: 80px;
    margin: 0 auto 2rem;
    display: block;
    opacity: 0.8;
}

.manifesto h2 {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .manifesto h2 {
        font-size: 3rem;
    }
}

.manifesto-text {
    text-align: center;
}

.manifesto-text p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .manifesto-text p {
        font-size: 1.25rem;
    }
}

.manifesto-text p.highlight {
    color: var(--primary);
    font-weight: 400;
}

.video-placeholder {
    aspect-ratio: 9/16;
    width: 100%;
    max-width: 356px;
    margin: 3rem auto 2rem;
    background: rgba(30, 20%, 95%, 0.3);
    border-radius: var(--radius);
    border: 2px solid rgba(94, 47, 61, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder p {
    color: var(--muted-foreground);
    font-weight: 300;
}

/* Framework Section */
.framework {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.framework-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.80),
            rgba(239, 228, 220, 0.75),
            rgba(196, 216, 189, 0.70));
    backdrop-filter: blur(4px);
}

.framework-content {
    position: relative;
    z-index: 10;
}

.framework-header {
    max-width: 768px;
    margin: 0 auto 4rem;
    text-align: center;
}

.framework h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .framework h2 {
        font-size: 3rem;
    }
}

.framework-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    font-weight: 300;
    line-height: 1.8;
}

.pillars-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-card {
    background: var(--card);
    border: 1px solid rgba(94, 47, 61, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: rgba(94, 47, 61, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pillar-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(94, 47, 61, 0.1);
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}

.pillar-card:hover .pillar-icon-wrapper {
    background: rgba(94, 47, 61, 0.2);
}

.pillar-icon {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--muted-foreground);
    font-weight: 300;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 6rem 1rem;
    background: linear-gradient(180deg, hsl(30, 20%, 97%) 0%, hsl(0, 0%, 100%) 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .services h2 {
        font-size: 3rem;
    }
}

.services-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 768px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .services-header p {
        font-size: 1.25rem;
    }
}

.services-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--card);
    border: 1px solid rgba(94, 47, 61, 0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(94, 47, 61, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.disabled {
    opacity: 0.6;
}

.service-card.disabled:hover {
    border-color: rgba(94, 47, 61, 0.1);
    box-shadow: none;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.service-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(94, 47, 61, 0.1);
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: rgba(94, 47, 61, 0.2);
}

.service-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
}

.service-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 300;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-list .bullet {
    color: var(--primary);
    margin-top: 0.25rem;
}

.service-list .item-title {
    font-weight: 400;
    color: var(--foreground);
}

.service-list .item-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 300;
    margin-left: 1rem;
    margin-top: 0.25rem;
}

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

.service-cta .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
}

.btn-disabled {
    background: var(--muted);
    color: var(--muted-foreground);
    cursor: not-allowed;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--background);
}

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

.about h2 {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .about h2 {
        font-size: 3rem;
    }
}

.about-intro p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-intro .highlight {
    font-weight: 400;
    color: var(--primary);
}

/* Mission, Vision, Values */
.mvv-grid {
    display: grid;
    gap: 2rem;
    margin: 4rem 0;
}

@media (min-width: 768px) {
    .mvv-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mvv-card {
    background: rgba(94, 47, 61, 0.05);
    border: 1px solid rgba(94, 47, 61, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.mvv-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.mvv-card p,
.mvv-card ul {
    color: var(--muted-foreground);
    font-weight: 300;
    line-height: 1.6;
}

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

.mvv-card ul li {
    margin-bottom: 0.5rem;
}

.purpose-card {
    background: rgba(94, 47, 61, 0.1);
    border: 2px solid rgba(94, 47, 61, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2.5rem;
}

.purpose-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .purpose-card h3 {
        font-size: 1.5rem;
    }
}

.purpose-card p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.4;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .purpose-card p {
        font-size: 1.25rem;
    }
}

/* Founders */
.founders {
    margin-top: 4rem;
}

.founders h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .founders h3 {
        font-size: 1.875rem;
    }
}

.founders-grid {
    display: grid;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-image {
    width: 192px;
    height: 192px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(94, 47, 61, 0.2);
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.founder-card h4 {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.founder-card p {
    color: var(--muted-foreground);
    font-weight: 300;
    line-height: 1.6;
    max-width: 24rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg,
            rgba(94, 47, 61, 0.05),
            rgba(239, 228, 220, 0.2));
}

.contact-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact h2 {
        font-size: 3rem;
    }
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
}

.contact-item a {
    font-size: 1.25rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 300;
    transition: text-decoration 0.3s ease;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-section {
    padding-top: 2rem;
}

.social-section p {
    color: var(--muted-foreground);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 48px;
    opacity: 0.9;
}

.footer p {
    text-align: center;
    font-weight: 300;
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 0.75rem;
    opacity: 0.75;
    max-width: 42rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}