﻿:root {
    --ink: #1a2238;
    --soft-ink: #4f5d75;
    --paper: #f7f9fc;
    --card: #ffffff;
    --brand: #0b6e4f;
    --brand-dark: #08523b;
    --accent: #c44536;
    --line: #d7deea;
    --shadow: 0 12px 30px rgba(10, 36, 99, 0.12);
}

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

body {
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.5;
    overflow-x: hidden;
}

.site-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(11, 110, 79, 0.18), transparent 35%),
        radial-gradient(circle at 90% 20%, rgba(196, 69, 54, 0.14), transparent 32%),
        radial-gradient(circle at 10% 90%, rgba(9, 88, 128, 0.12), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(247, 249, 252, 0.9);
    border-bottom: 1px solid rgba(215, 222, 234, 0.7);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
}

.brand-mark {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--brand), #1a8e67);
    color: #fff;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--soft-ink);
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--brand-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 11px 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(145deg, var(--brand), #188e67);
    color: #fff;
    box-shadow: 0 8px 20px rgba(11, 110, 79, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 12px 24px rgba(11, 110, 79, 0.32);
}

.btn-outline {
    border-color: var(--brand);
    color: var(--brand);
    background: #fff;
}

.btn-lg {
    padding: 13px 22px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 4px 0;
}

.hero {
    padding: 72px 0 46px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
}

.eyebrow {
    color: var(--brand-dark);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-copy {
    color: var(--soft-ink);
    max-width: 58ch;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-panel {
    display: grid;
    gap: 14px;
}

.quick-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.quick-card.alt {
    border-color: rgba(196, 69, 54, 0.34);
}

.quick-card h3 {
    margin-bottom: 8px;
    font-size: 1.12rem;
}

.quick-card p {
    color: var(--soft-ink);
    margin-bottom: 12px;
}

.quick-card a {
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 700;
}

.quick-card a i {
    margin-left: 6px;
}

.feature-section,
.styles-section,
.process-section {
    padding: 58px 0;
}

.feature-section h2,
.styles-section h2,
.process-section h2 {
    font-family: 'Lora', serif;
    font-size: clamp(1.5rem, 2.7vw, 2.35rem);
    margin-bottom: 24px;
    text-align: center;
}

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

.feature-card {
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 22px;
    box-shadow: var(--shadow);
}

.feature-card i {
    color: var(--brand);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card h3 {
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--soft-ink);
}

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

.style-card {
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--line);
    overflow: hidden;
}

.style-swatch {
    height: 118px;
}

.style-card h3 {
    padding: 14px 16px 16px;
    font-size: 1.02rem;
}

.resume-a {
    background: linear-gradient(120deg, #f0e0d8, #ffffff 55%, #b33939);
}

.resume-b {
    background: linear-gradient(120deg, #dfe9f3, #ffffff 56%, #27568c);
}

.resume-c {
    background: linear-gradient(120deg, #f4f4f4, #ffffff 58%, #444444);
}

.biodata-a {
    background: linear-gradient(120deg, #f5ead8, #ffffff 60%, #825a2c);
}

.biodata-b {
    background: linear-gradient(120deg, #f3e4dc, #ffffff 60%, #7c2d3f);
}

.biodata-c {
    background: linear-gradient(120deg, #e8f2ef, #ffffff 60%, #1d6b64);
}

.process-wrap {
    max-width: 740px;
    text-align: center;
}

.process-wrap ol {
    text-align: left;
    list-style-position: inside;
    color: var(--soft-ink);
    margin: 0 auto 20px;
    width: fit-content;
    line-height: 1.8;
}

.footer {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    background: #fff;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--soft-ink);
    font-size: 0.95rem;
}

.reveal-item {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-item.show {
    opacity: 1;
    transform: none;
}

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

    .feature-grid,
    .style-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        right: 4%;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        width: min(240px, 92vw);
    }

    .nav-links.open {
        display: flex;
    }

    .feature-grid,
    .style-grid {
        grid-template-columns: 1fr;
    }

    .footer-wrap {
        flex-direction: column;
    }
}
