/* getstarted.css — Get started questionnaire wizard.
   Reuses styles.css tokens (--ink, --paper, --coral, --lime, --bd, shadows) and
   the shared .btn / .eyebrow / .logo patterns. Neo-brutalist to match web/. */

/* ── Top bar + progress ── */
.gs-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--paper);
}
.gs-bar-in {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.gs-bar .logo img { height: 26px; display: block; }
.gs-step-label {
    margin-left: auto;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--g500);
}
.gs-close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: var(--bd);
    border-radius: 11px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--sh-sm);
    transition: transform .12s, box-shadow .12s;
}
.gs-close:hover { transform: translate(-2px, -2px); box-shadow: var(--sh); }
.gs-close:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.gs-progress {
    height: 6px;
    background: var(--paper2);
    border-top: 1.5px solid var(--ink);
}
.gs-progress-fill {
    height: 100%;
    width: 20%;
    background: var(--coral);
    transition: width .28s ease;
}

/* ── Layout ── */
.gs-main { padding: 40px 0 96px; }
.gs-wrap { max-width: 660px; }

/* ── Per-step header ── */
.gs-step-head { margin-bottom: 28px; }
.gs-step-head .eyebrow { margin-bottom: 16px; }
.gs-step-h1 {
    font-family: var(--disp);
    font-size: clamp(28px, 4.6vw, 38px);
    line-height: 1.06;
    margin-bottom: 8px;
}
.gs-step-sub { color: var(--g500); font-size: 16px; max-width: 48ch; }

/* ── Honeypot (bot trap; off-screen, not display:none so bots still see it) ── */
.gs-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ── Steps ── */
.gs-step { display: none; }
.gs-step.gs-step-show { display: block; }

/* ── Fields ── */
.gs-field { margin-bottom: 24px; }
.gs-label {
    display: block;
    font-family: var(--body);
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 10px;
}
.gs-opt {
    font-weight: 600;
    font-size: 12px;
    color: var(--g400);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-left: 6px;
}

/* ── Text / select / textarea inputs ── */
.gs-input {
    width: 100%;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    background: #fff;
    border: var(--bd);
    border-radius: 12px;
    padding: 13px 15px;
    box-shadow: var(--sh-sm);
    transition: transform .12s, box-shadow .12s;
}
.gs-input::placeholder { color: var(--g400); }
.gs-input:focus {
    outline: none;
    transform: translate(-2px, -2px);
    box-shadow: var(--sh);
}
.gs-textarea { resize: vertical; min-height: 108px; line-height: 1.5; }
.gs-select { appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231A1510' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* ── Chips (radio + checkbox) ── */
.gs-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.gs-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    background: #fff;
    border: var(--bd);
    border-radius: 12px;
    padding: 11px 15px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--sh-sm);
    transition: transform .12s, box-shadow .12s, background .12s;
}
.gs-chip:hover { transform: translate(-2px, -2px); box-shadow: var(--sh); }
.gs-chip:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.gs-chip-check {
    display: none;
    width: 15px;
    height: 15px;
}
.gs-chip-check svg { width: 15px; height: 15px; }
.gs-chip-on { background: var(--lime); }
.gs-chip-on .gs-chip-check { display: block; }

/* ── Nav ── */
.gs-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1.5px solid var(--paper2);
}
.gs-nav[hidden] { display: none; }   /* display:flex above overrides the hidden attr otherwise */
.gs-spacer { flex: 1; }
.gs-error {
    color: var(--coral);
    font-weight: 700;
    font-size: 14px;
    text-align: right;
}

/* ── Thank-you screen ── */
.gs-thanks { text-align: center; padding: 40px 0; }
.gs-thanks-check {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    background: var(--lime);
    color: var(--ink);
    border: var(--bd);
    border-radius: 50%;
    box-shadow: var(--sh);
}
.gs-thanks h2 { font-family: var(--disp); font-size: 34px; margin-bottom: 12px; }
.gs-thanks p { color: var(--g500); font-size: 17px; max-width: 42ch; margin: 0 auto 26px; }

/* ── Mobile ── */
@media (max-width: 560px) {
    .gs-step-label { display: none; }
    .gs-main { padding: 28px 0 72px; }
    .gs-nav .btn { flex: 1; justify-content: center; }
}
