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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background: #f5f3ef;
    color: #2a2a2a;
    line-height: 1.7;
}

/* Nav */

nav {
    max-width: 860px;
    margin: 0 auto;
    padding: 24px 24px 0;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

.logo-sep {
    color: #c4a46c;
    margin: 0 1px;
}

/* Main */

main {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */

.hero {
    padding: 64px 0 48px;
    text-align: center;
}

h1 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 18px;
    color: #777;
    max-width: 500px;
    margin: 0 auto;
}

/* Profile cards */

.profiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-bottom: 64px;
}

.profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e8e4de;
    transition: box-shadow 0.2s;
}

.profile-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.profile-emoji {
    font-size: 36px;
    margin-bottom: 14px;
}

.profile-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.profile-desc {
    font-size: 15px;
    color: #888;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Recommendation */

.recommendation {
    background: #faf8f4;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #ece8e0;
}

.rec-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c4a46c;
    margin-bottom: 8px;
}

.recommendation h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.recommendation p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.7;
}

.recommendation p strong {
    color: #333;
}

.recommendation ul {
    list-style: none;
    margin-bottom: 16px;
}

.recommendation li {
    font-size: 13px;
    color: #888;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.recommendation li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #c4a46c;
    font-size: 12px;
}

.profile-cta {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #2a2a2a;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.profile-cta:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

/* Comparison */

.comparison {
    padding-bottom: 56px;
}

.comparison h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.table-wrap {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8e4de;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 580px;
}

thead {
    background: #faf8f4;
}

th {
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    color: #666;
}

td {
    padding: 12px 16px;
    font-size: 14px;
    border-top: 1px solid #f0ece6;
    color: #555;
}

td strong {
    color: #1a1a1a;
}

.yes {
    color: #16a34a;
    font-weight: 500;
}

.partial {
    color: #c4a46c;
    font-weight: 500;
}

.no {
    color: #ccc;
}

/* Bottom CTA */

.bottom-cta {
    text-align: center;
    padding: 48px 0 64px;
    border-top: 1px solid #e8e4de;
}

.bottom-cta p {
    font-size: 17px;
    color: #888;
    margin-bottom: 20px;
}

/* Footer */

footer {
    text-align: center;
    padding: 32px 24px;
    border-top: 1px solid #e8e4de;
}

footer p {
    font-size: 12px;
    color: #ccc;
}

/* Responsive */

@media (max-width: 700px) {
    .profiles {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 48px 0 36px;
    }
}
