@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
:root {
    --bg: #f8fffe;
    --surface: #fff;
    --text: #134e4a;
    --muted: #5b7c7a;
    --accent: #0d9488;
    --accent-light: #ccfbf1;
    --radius: 20px;
    --wrap: 1100px;
    --shadow: 0 4px 24px rgba(13,148,136,0.08);
}
body.has-proto-bar { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; }
.logo { font-size: 1.35rem; font-weight: 800; color: var(--accent); text-decoration: none; }
.nav ul { display: flex; gap: 2rem; list-style: none; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 0.92rem; }
.nav a:hover { color: var(--text); }
.btn { display: inline-flex; padding: 0.8rem 1.6rem; background: var(--accent); color: #fff; border-radius: 999px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(13,148,136,0.3); transition: transform .15s; }
.btn:hover { transform: translateY(-1px); }
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 2rem 0 4rem; }
.hero h1 { font-size: clamp(2rem, 4vw, 2.85rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.hero-lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.5rem; }
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.25rem 0 1.75rem; }
.pill { background: var(--accent-light); color: var(--text); padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600; }
.hero-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-card-body { padding: 1.5rem; }
.hero-card-body strong { font-size: 1.1rem; }
.hero-card-body p { color: var(--muted); font-size: 0.9rem; margin-top: 0.35rem; }
.section { padding: 4rem 0; }
.section h2 { text-align: center; font-size: 1.85rem; font-weight: 800; margin-bottom: 2.5rem; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card { background: var(--surface); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.08); }
.card-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--accent-light); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 1rem; }
.card h3 { color: var(--accent); margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--muted); }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.member { background: var(--surface); border-radius: var(--radius); padding: 1.75rem; text-align: center; box-shadow: var(--shadow); }
.member .person-avatar { margin: 0 auto 1rem; border: 3px solid var(--accent-light); }
.member strong { display: block; margin-bottom: 0.25rem; }
.member span { font-size: 0.85rem; color: var(--muted); }
.faq { max-width: 720px; margin: 0 auto; }
.faq details { background: var(--surface); border-radius: 14px; padding: 1.1rem 1.35rem; margin-bottom: 0.65rem; box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.06); }
.faq summary { font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.25rem; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin-top: 0.75rem; font-size: 0.9rem; color: var(--muted); }
.cta { background: linear-gradient(135deg, #0f766e, #14b8a6); color: #fff; border-radius: var(--radius); padding: 3.5rem 2rem; text-align: center; margin: 2rem auto 4rem; max-width: var(--wrap); }
.cta h2 { font-size: 1.85rem; margin-bottom: 0.5rem; }
.cta p { opacity: 0.9; margin-bottom: 1.5rem; }
.cta .btn { background: #fff; color: var(--accent); box-shadow: none; }
.footer { text-align: center; padding: 2rem; color: var(--muted); font-size: 0.85rem; }
@media (max-width: 900px) { .hero, .grid3, .team { grid-template-columns: 1fr; } .nav ul { display: none; } }
