/* HERO */
.hero {
    max-width: 860px;
    margin: 0 auto;
    padding: 6rem 2rem 5rem;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    background: #ededfc;
    color: var(--accent);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: .85rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background .15s, transform .1s;
}

.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--ink);
    font-weight: 600;
    font-size: 1rem;
    padding: .85rem 2rem;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    text-decoration: none;
    transition: border-color .15s;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* SOCIAL PROOF */
.tagline {
    text-align: center;
    font-size: .85rem;
    color: var(--muted);
    padding: 0 2rem 4rem;
}

/* FEATURES */
.features {
    background: var(--surface);
    padding: 5rem 2rem;
}

.section-label {
    text-align: center;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: .75rem;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 3.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1040px;
    margin: 0 auto;
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: #ededfc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.card p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.55;
}

/* PHILOSOPHY */
.philosophy {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

blockquote {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--ink);
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

cite {
    font-size: .85rem;
    color: var(--muted);
    font-style: normal;
}

.philosophy-body {
    margin-top: 2rem;
    color: var(--muted);
    font-size: 1rem;
}

/* CTA SECTION */
.cta-section {
    background: var(--accent);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.05rem;
    padding: .9rem 2.25rem;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .1s;
}

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