/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: disc;
}

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

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 24px;
}

.navbar-icon {
    font-family: "Crimson Pro", Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.nav-pill {
    margin: 0 auto;
    display: inline-flex;
    gap: 8px;
    background: #f5f5f5;
    border-radius: 28px;
    padding: 8px 24px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 4px 8px;
}

.nav-link:hover {
    color: #000;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    text-align: center;
}

.hero h1 {
    font-family: "Crimson Pro", Georgia, "Times New Roman", Times, serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin-bottom: 28px;
}

.hero-text {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 40px 0 60px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-text h2 {
    font-family: "Crimson Pro", Georgia, "Times New Roman", Times, serif;
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.feature-text p {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    line-height: 1.6;
    max-width: 380px;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
}

/* Pink dots pattern */
.placeholder-dots {
    background: #faf5f7;
    position: relative;
}

.placeholder-dots::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 2px, #e891b8 100%, transparent 100%),
        radial-gradient(circle 1.5px, #f0a8c8 100%, transparent 100%),
        radial-gradient(circle 1px, #d77da3 100%, transparent 100%);
    background-size:
        12px 12px,
        8px 10px,
        6px 8px;
    background-position:
        0 0,
        4px 5px,
        2px 3px;
    mask-image: linear-gradient(
        135deg,
        transparent 10%,
        black 30%,
        black 70%,
        transparent 95%
    );
    -webkit-mask-image: linear-gradient(
        135deg,
        transparent 10%,
        black 30%,
        black 70%,
        transparent 95%
    );
    opacity: 0.7;
}

/* Purple/pink gradient */
.placeholder-gradient {
    background: linear-gradient(
        135deg,
        #e8daf0 0%,
        #f2d4e8 30%,
        #e8c8e0 50%,
        #d8c0d8 70%,
        #f0e0f0 100%
    );
}

/* Values Section */
.values {
    background: #f7f7f7;
    padding: 60px 0 70px;
}

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

.value-card {
    padding: 0;
}

.value-divider {
    width: 100%;
    height: 1px;
    background: #d0d0d0;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: "Crimson Pro", Georgia, "Times New Roman", Times, serif;
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 28px 0;
    border-top: 1px solid #eee;
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 14px;
    color: #555;
}

.footer-nav a:hover {
    color: #111;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    color: #555;
    display: flex;
    align-items: center;
}

.social-link:hover {
    color: #111;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-row-reverse .feature-image {
        order: -1;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-left {
        flex-direction: column;
        gap: 16px;
    }
}
