:root {
    --ink: #20202a;
    --muted: #74717e;
    --purple: #6e48f5;
    --line: #e8e4ef;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: #fcfbff; }
.site-header, main, footer { max-width: 1160px; margin: auto; }
.site-header { height: 88px; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-size: 17px; font-weight: 750; }
.brand-mark { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 10px; color: white; background: var(--ink); font-weight: 900; }
.status { color: var(--muted); font-size: 12px; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #58c897; }
.hero { position: relative; max-width: 750px; margin: 75px auto 112px; padding: 0 24px; text-align: center; }
.hero::before, .hero::after { position: absolute; z-index: -1; content: ""; border-radius: 50%; filter: blur(1px); }
.hero::before { width: 180px; height: 180px; top: -40px; left: -120px; background: #eee9ff; }
.hero::after { width: 90px; height: 90px; right: -100px; top: 190px; background: #fff0c5; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; padding: 8px 13px; border: 1px solid #e2d9ff; border-radius: 99px; color: var(--purple); background: #f7f4ff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h1 { margin: 25px 0 18px; font-size: clamp(55px, 8vw, 88px); line-height: .94; letter-spacing: -.07em; }
h1 em { color: var(--purple); font-style: normal; }
.intro { max-width: 450px; margin: 0 auto 35px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.ask-card { max-width: 580px; margin: auto; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 18px 60px rgba(44, 29, 80, .1); text-align: left; }
.card-label { margin: 0 0 13px 3px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
form { display: flex; gap: 10px; }
.input-wrap { display: flex; align-items: center; flex: 1; gap: 10px; padding: 0 15px; border: 1px solid #dedbe5; border-radius: 10px; color: #a09ba9; }
input { width: 100%; padding: 14px 0; border: 0; outline: 0; color: var(--ink); background: transparent; font: inherit; font-size: 14px; }
button { padding: 0 18px; border: 0; border-radius: 10px; color: white; background: var(--purple); font: inherit; font-size: 13px; font-weight: 750; cursor: pointer; transition: transform .2s, background .2s; }
button:hover { background: #5833da; transform: translateY(-2px); }
#answer { min-height: 25px; padding: 14px 4px 0; color: var(--purple); font-weight: 750; text-align: center; }
.social-proof { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 25px; color: var(--muted); font-size: 12px; }
.social-proof p { margin: 0; }.social-proof strong { color: var(--ink); }
.avatars { display: flex; }.avatars span { display: grid; place-items: center; width: 27px; height: 27px; margin-left: -6px; border: 2px solid #fcfbff; border-radius: 50%; background: #f2edff; font-size: 13px; }.avatars span:first-child { margin-left: 0; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 0 32px 76px; }.features article { padding: 26px; border: 1px solid var(--line); border-radius: 15px; background: white; }.feature-icon { display: grid; place-items: center; width: 36px; height: 36px; margin-bottom: 20px; border-radius: 10px; font-size: 20px; }.purple { color: #6e48f5; background: #eee9ff; }.yellow { color: #c18a00; background: #fff3c9; }.pink { color: #e34e91; background: #ffe5f0; }
h2 { margin: 0 0 8px; font-size: 15px; }.features p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
footer { display: flex; justify-content: space-between; padding: 20px 32px 30px; border-top: 1px solid var(--line); color: #aaa6b2; font-size: 11px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
@media (max-width: 650px) { .site-header { padding: 0 20px; }.status { display: none; }.hero { margin-top: 55px; margin-bottom: 80px; }.hero::before, .hero::after { display: none; }form { flex-direction: column; }.input-wrap { min-height: 49px; }button { min-height: 49px; }.features { grid-template-columns: 1fr; padding: 0 20px 50px; }footer { padding: 20px; } }