/* 간편계산(비회원) 전용 스타일 — 흰 캔버스·하늘색 히어로 그라데이션·검정 CTA (design-web-standard) */
:root {
    --canvas: #ffffff;
    --canvas-soft: #fafafa;
    --ink: #171717;
    --body: #60646c;
    --muted: #999999;
    --muted-soft: #cccccc;
    --primary: #000000;
    --primary-active: #1a1a1a;
    --hairline: #f0f0f3;
    --hairline-strong: #dcdee0;
    --surface-strong: #f0f0f3;
    --surface-dark: #171717;
    --on-dark: #ffffff;
    --on-dark-soft: #b0b4ba;
    --sky-light: #cfe7ff;
    --sky-mid: #a8c8e8;
    --link: #0d74ce;
    --success: #16a34a;
    --warning: #ab6400;
    --error: #b91c1c;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.04);
    --radius-cta: 8px;
    --radius-card: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    font-family: Inter, -apple-system, system-ui, 'Segoe UI', 'Malgun Gothic', sans-serif;
    background: var(--canvas);
    color: var(--ink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── 히어로 밴드: 타이틀 + 진행 스텝 (하늘색 그라데이션은 이 밴드에만) ── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 28px 16px 20px;
    text-align: center;
    background:
        radial-gradient(90% 130% at 50% -35%, var(--sky-light) 0%, rgba(207, 231, 255, 0.45) 55%, rgba(255, 255, 255, 0) 100%),
        var(--canvas);
    border-bottom: 1px solid var(--hairline);
}
.hero .blob {
    position: absolute; border-radius: 50%; filter: blur(48px); opacity: .5; pointer-events: none;
    animation: float 14s ease-in-out infinite alternate;
}
.hero .blob.b1 { width: 260px; height: 260px; background: var(--sky-light); top: -140px; left: -80px; }
.hero .blob.b2 { width: 200px; height: 200px; background: var(--sky-mid); top: -120px; right: -60px; animation-delay: -7s; }
@keyframes float { from { transform: translateY(0) scale(1); } to { transform: translateY(22px) scale(1.08); } }

/* 좌측 상단 타라센 브랜드 — 파란 T 심볼, 콘텐츠 컬럼 시작점에 정렬 */
.brand-wrap {
    position: absolute; top: 16px; left: max(16px, calc(50% - 360px)); z-index: 3;
    display: flex; align-items: center; gap: 8px;
}
.brand-img { height: 26px; width: auto; display: block; }
.brand { font-weight: 800; letter-spacing: -0.3px; font-size: 14px; color: var(--ink); }

.hero h1 {
    position: relative;
    font-size: 28px; font-weight: 600; letter-spacing: -0.84px; line-height: 1.2;
}

/* ── 전화 다이얼형 진행 표시 — 현재 단계 중앙·확대, 나머지는 거리별 축소 ── */
.dial {
    position: relative; height: 108px; margin-top: 8px; overflow: hidden;
    max-width: 720px; margin-left: auto; margin-right: auto;
}
/* 양끝 페이드 — 흰색 덧칠 대신 다이얼 자체를 투명 처리(배경색 무관) */
.dial {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.dial-track {
    position: absolute; top: 24px; left: 0; display: flex;   /* 확대 원(1.55배)+회전 링이 위로 잘리지 않도록 여유 확보 */
    transition: transform .6s cubic-bezier(.22, .8, .36, 1); will-change: transform;
}
.dial-item {
    width: 76px; flex: 0 0 76px;
    display: flex; flex-direction: column; align-items: center;
}
.dial-item .num {
    width: 40px; height: 40px; border-radius: 50%; position: relative;
    display: flex; align-items: center; justify-content: center;
    background: var(--canvas); border: 2px solid var(--hairline-strong);
    font-size: 14px; font-weight: 700; color: var(--muted);
    transition: transform .55s cubic-bezier(.22, .8, .36, 1), background .3s, color .3s, border-color .3s, opacity .4s, box-shadow .4s;
}
.dial-item { cursor: pointer; }
.dial-item.done .num { background: var(--ink); border-color: var(--ink); color: #fff; }
.dial-item.done:hover .num, .dial-item.todo:hover .num { transform: scale(1.08); box-shadow: 0 4px 12px rgba(23, 23, 23, .2); opacity: 1; }
.dial-item.cur .num {
    background: var(--ink); border-color: var(--ink); color: #fff;
    transform: scale(1.55);
    box-shadow: 0 10px 24px rgba(23, 23, 23, .28);
}
/* 점선 링은 항상 존재하고 투명도만 전환 — 단계 이동 시 튀지 않고 부드럽게 켜지고 꺼진다 */
.dial-item .num::after {
    content: ''; position: absolute; inset: -7px; border-radius: 50%;
    border: 2px dashed var(--sky-mid);
    opacity: 0; transition: opacity .45s ease;
    animation: dialSpin 10s linear infinite;
}
.dial-item.cur .num::after { opacity: 1; }
@keyframes dialSpin { to { transform: rotate(360deg); } }
.dial-item.d1 .num { transform: scale(.92); opacity: .85; }
.dial-item.d2 .num { transform: scale(.74); opacity: .55; }
.dial-item.d3 .num { transform: scale(.6); opacity: .3; }
.dial-item .lb {
    margin-top: 20px; font-size: 13px; font-weight: 700; letter-spacing: .3px; color: var(--ink);
    white-space: nowrap; max-width: 74px; overflow: hidden; text-overflow: ellipsis;
    opacity: 0; transform: translateY(-4px);
    transition: opacity .35s ease .15s, transform .35s ease .15s, font-size .3s ease;
}
.dial-item.cur .lb { opacity: 1; transform: none; }
/* 모든 단계 라벨 표시 — 현재에서 멀어질수록 점점 작고 흐리게 */
.dial-item.d1 .lb { opacity: .7; transform: none; font-size: 10.5px; font-weight: 600; color: var(--body); margin-top: 23px; }
.dial-item.d2 .lb { opacity: .5; transform: none; font-size: 9px; font-weight: 600; color: var(--body); margin-top: 25px; }
.dial-item.d3 .lb { opacity: .35; transform: none; font-size: 8px; font-weight: 600; color: var(--muted); margin-top: 26px; }

/* ── 본문 ── */
.wrap { flex: 1; width: 100%; max-width: 720px; margin: 0 auto; padding: 24px 16px 120px; }

.panel { display: none; }
.panel.active { display: block; animation: slideIn .5s cubic-bezier(.22, .8, .36, 1); }
.panel.leaving-back.active { animation: slideInBack .5s cubic-bezier(.22, .8, .36, 1); }
@keyframes slideIn { from { opacity: 0; transform: translateX(64px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes slideInBack { from { opacity: 0; transform: translateX(-64px) scale(.97); } to { opacity: 1; transform: none; } }
/* 카드 순차 등장 — 단계 진입 시 스태거 */
.panel.active .card { animation: fadeUp .5s cubic-bezier(.22, .8, .36, 1) backwards; }
.panel.active .card:nth-of-type(2) { animation-delay: .08s; }
.panel.active .card:nth-of-type(3) { animation-delay: .16s; }

.panel h2 { font-size: 22px; font-weight: 600; letter-spacing: -0.5px; margin-bottom: 16px; }

/* 세목 선택 카드 — 아이콘 좌측 + 텍스트 우측 가로형 (공간 절약) */
.tax-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.tax-card {
    display: flex; align-items: center; gap: 14px;
    border: 1px solid var(--hairline-strong); border-radius: var(--radius-card);
    background: var(--canvas); padding: 14px 16px; cursor: pointer; text-align: left;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    font-family: inherit;
    animation: fadeUp .5s ease backwards;
}
.tax-card .txt { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.tax-card:nth-child(2) { animation-delay: .05s; }
.tax-card:nth-child(3) { animation-delay: .1s; }
.tax-card:nth-child(4) { animation-delay: .15s; }
.tax-card:nth-child(5) { animation-delay: .2s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.tax-card:hover, .tax-card:focus-visible { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(23, 23, 23, .1); border-color: var(--ink); outline: none; }
.tax-card.selected { border-color: var(--ink); box-shadow: 0 0 0 2px var(--ink) inset; transform: scale(.97); }
.tax-card .ico {
    display: inline-flex; width: 52px; height: 52px; border-radius: 14px;
    align-items: center; justify-content: center; font-size: 26px;
    background: linear-gradient(135deg, var(--sky-light), #eaf4ff);
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.tax-card:nth-child(2) .ico { background: linear-gradient(135deg, #ffe4e6, #fff1f2); }
.tax-card:nth-child(3) .ico { background: linear-gradient(135deg, #dcfce7, #f0fdf4); }
.tax-card:nth-child(4) .ico { background: linear-gradient(135deg, #fef3c7, #fffbeb); }
.tax-card:nth-child(5) .ico { background: linear-gradient(135deg, #ede9fe, #f5f3ff); }
.tax-card:hover .ico { transform: rotate(-8deg) scale(1.12); }
.tax-card .ico { flex: 0 0 52px; }
.tax-card .nm { font-size: 16px; font-weight: 600; }
.tax-card .dc { font-size: 12px; color: var(--body); margin-top: 2px; line-height: 1.45; }

/* 폼 */
.card {
    border: 1px solid var(--hairline); border-radius: var(--radius-card);
    background: var(--canvas); padding: 20px; margin-bottom: 14px; box-shadow: var(--shadow-soft);
}
.card h3 { font-size: 15px; font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.frow { margin-bottom: 14px; }
.frow:last-child { margin-bottom: 0; }
.frow label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.frow .hint { font-weight: 400; color: var(--muted); font-size: 12px; margin-left: 4px; }
.frow input[type=text], .frow input[type=number], .frow input[type=date], .frow select {
    width: 100%; height: 46px; padding: 10px 14px; font-size: 15px; font-family: inherit;
    border: 1px solid var(--hairline-strong); border-radius: var(--radius-cta);
    background: var(--canvas); color: var(--ink);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.frow input:focus, .frow select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.frow input:disabled, .frow select:disabled { background: var(--canvas-soft); color: var(--muted-soft); }
.frow .money { text-align: right; font-variant-numeric: tabular-nums; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* 토글(세그먼트) */
.seg { display: flex; border: 1px solid var(--hairline-strong); border-radius: var(--radius-cta); overflow: hidden; }
.seg button {
    flex: 1; height: 44px; border: none; background: var(--canvas); color: var(--body);
    font-size: 14px; font-weight: 500; font-family: inherit; cursor: pointer; transition: all .15s ease;
}
.seg button + button { border-left: 1px solid var(--hairline-strong); }
.seg button.on { background: var(--ink); color: #fff; font-weight: 600; }

/* 섹션 소제목 (반복 행 목록 위) */
h3.sec { font-size: 15px; font-weight: 700; margin: 4px 2px 10px; }
h3.sec .hint { font-weight: 400; color: var(--muted); font-size: 12px; margin-left: 6px; }

/* 반복 입력 행 카드 (자산·상속인) */
.item-card {
    border: 1px solid var(--hairline); border-radius: var(--radius-card);
    background: var(--canvas); padding: 16px; margin-bottom: 10px;
    box-shadow: var(--shadow-soft); animation: pop .25s ease;
}
@keyframes pop { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.item-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.item-title { font-size: 12px; font-weight: 800; color: var(--muted); letter-spacing: 1px; }
.item-del {
    border: none; background: none; cursor: pointer; font-family: inherit;
    color: var(--muted); font-size: 12px; font-weight: 600; padding: 4px 6px; transition: color .15s;
}
.item-del:hover { color: var(--error); }
.add-btn {
    width: 100%; height: 46px; margin-bottom: 14px;
    border: 1.5px dashed var(--hairline-strong); border-radius: var(--radius-cta);
    background: var(--canvas); color: var(--body); font-size: 14px; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: all .15s ease;
}
.add-btn:hover { border-color: var(--ink); color: var(--ink); }

/* 결과 */
.result-hero {
    position: relative; overflow: hidden;
    text-align: center; padding: 36px 20px; border-radius: var(--radius-card);
    background: var(--surface-dark); color: var(--on-dark); margin-bottom: 14px;
    animation: fadeUp .5s ease;
}
/* 회전 광선 — 결과 카드에 은은한 하늘색 스윕 */
.result-hero::before {
    content: ''; position: absolute; inset: -60%;
    background: conic-gradient(from 0deg, transparent 0 68%, rgba(207, 231, 255, .22) 84%, transparent 100%);
    animation: dialSpin 7s linear infinite; pointer-events: none;
}
.result-hero > * { position: relative; }
.result-hero .cap { font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--on-dark-soft); }
.result-hero .amt { font-size: 40px; font-weight: 600; letter-spacing: -1.2px; margin-top: 8px; font-variant-numeric: tabular-nums; }
.result-hero .amt small { font-size: 20px; font-weight: 400; }
.result-hero .eff { margin-top: 8px; font-size: 13px; color: var(--on-dark-soft); }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.kpi { border: 1px solid var(--hairline); border-radius: var(--radius-card); padding: 14px 12px; text-align: center; animation: fadeUp .5s ease backwards; }
.kpi:nth-child(2) { animation-delay: .07s; }
.kpi:nth-child(3) { animation-delay: .14s; }
.kpi .k { font-size: 11px; font-weight: 600; letter-spacing: .5px; color: var(--muted); }
.kpi .v { font-size: 16px; font-weight: 600; margin-top: 6px; font-variant-numeric: tabular-nums; }

.warn-box {
    border-left: 4px solid #f59e0b; background: #fffbeb; border-radius: var(--radius-cta);
    padding: 12px 14px; margin-bottom: 14px; font-size: 13px; color: #78350f;
}
.warn-box ul { padding-left: 16px; margin-top: 6px; line-height: 1.7; }

details.steps-box { border: 1px solid var(--hairline); border-radius: var(--radius-card); margin-bottom: 14px; overflow: hidden; }
details.steps-box summary {
    padding: 14px 16px; font-size: 14px; font-weight: 600; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
details.steps-box summary::after { content: '▾'; color: var(--muted); transition: transform .2s; }
details.steps-box[open] summary::after { transform: rotate(180deg); }
.steps-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.steps-table th, .steps-table td { padding: 9px 12px; border-top: 1px solid var(--hairline); text-align: left; }
.steps-table td.n { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.steps-table td.c { color: var(--muted); width: 40px; }
.steps-table tr.hl td { font-weight: 700; background: var(--canvas-soft); }

/* 절세시뮬레이션 */
.best-card {
    border-radius: var(--radius-card); padding: 22px; margin-bottom: 14px;
    background: linear-gradient(135deg, #eefaf2, #f6fffa); border: 1px solid #bbe7c9;
    animation: fadeUp .5s ease;
}
.best-card .tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--success); }
.best-card .nm { font-size: 17px; font-weight: 600; margin-top: 6px; }
.best-card .sv { font-size: 26px; font-weight: 600; letter-spacing: -0.5px; margin-top: 8px; color: var(--success); font-variant-numeric: tabular-nums; }
.best-card .dc { font-size: 13px; color: var(--body); margin-top: 8px; line-height: 1.55; }
.cand { border: 1px solid var(--hairline); border-radius: var(--radius-card); padding: 14px 16px; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; gap: 12px; animation: fadeUp .4s ease backwards; }
.cand .t { font-size: 14px; font-weight: 600; }
.cand .d { font-size: 12px; color: var(--body); margin-top: 3px; line-height: 1.5; }
.cand .s { font-size: 14px; font-weight: 700; white-space: nowrap; color: var(--success); font-variant-numeric: tabular-nums; }
.cand .s.zero { color: var(--muted); }

/* 하단 액션 바 */
.actions {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 10;
    background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px);
    border-top: 1px solid var(--hairline);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
}
.actions .inner { max-width: 720px; margin: 0 auto; display: flex; gap: 10px; }
.btn {
    height: 48px; padding: 0 22px; border-radius: var(--radius-cta); font-size: 15px; font-weight: 600;
    font-family: inherit; cursor: pointer; transition: all .15s ease; border: none;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-primary { background: var(--primary); color: #fff; flex: 1; }
.btn-primary:hover { background: var(--primary-active); }
.btn-primary:active { transform: scale(.97); }
.btn-primary:disabled { background: var(--muted-soft); cursor: not-allowed; }
.btn-ghost { background: var(--canvas); color: var(--ink); border: 1px solid var(--hairline-strong); min-width: 96px; }
.btn-ghost:hover { border-color: var(--ink); }

.spin { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: rot .7s linear infinite; }
@keyframes rot { to { transform: rotate(360deg); } }

.foot-note { text-align: center; font-size: 12px; color: var(--muted); padding: 20px 16px 8px; line-height: 1.6; }

/* ── 첫 화면 MBTI 바로가기 — 세목 카드와 구분되도록 배경·색을 달리한다 ── */
.mbti-cta {
    display: flex; align-items: center; gap: 16px; width: 100%; margin-top: 18px;
    padding: 16px 18px; border: 1px solid rgba(139, 92, 246, .28); border-radius: var(--radius-card);
    background: linear-gradient(115deg, #fff1f7 0%, #f1ecff 48%, #e9f6ff 100%);
    box-shadow: 0 6px 18px rgba(139, 92, 246, .12);
    cursor: pointer; text-align: left; font-family: inherit;
    transition: transform .18s cubic-bezier(.22, .8, .36, 1), box-shadow .18s ease;
}
.mbti-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(139, 92, 246, .2); }
.mbti-cta:active { transform: translateY(-1px); }

.mbti-face { flex: 0 0 58px; width: 58px; height: 58px; animation: mbtiBob 3.2s ease-in-out infinite; }
.mbti-face svg { width: 100%; height: 100%; overflow: visible; }
.f-base { fill: #fde68a; stroke: #f59e0b; stroke-width: 2; }
.f-blush { fill: #fda4af; opacity: .75; }
.f-eye { fill: #3f3f46; transform-origin: center; animation: mbtiBlink 4.4s infinite; }
.f-eye:nth-of-type(4) { animation-delay: .06s; }   /* 두 눈이 아주 살짝 어긋나게 깜빡인다 */
.f-mouth { fill: none; stroke: #3f3f46; stroke-width: 2.6; stroke-linecap: round; }
.f-spark { fill: #a78bfa; transform-origin: 55px 20px; animation: mbtiSpark 2.6s ease-in-out infinite; }

@keyframes mbtiBlink {
    0%, 88%, 100% { transform: scaleY(1); }
    92% { transform: scaleY(.08); }
    96% { transform: scaleY(1); }
}
@keyframes mbtiBob {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-5px) rotate(3deg); }
}
@keyframes mbtiSpark {
    0%, 100% { transform: scale(.7) rotate(0deg); opacity: .55; }
    50% { transform: scale(1.15) rotate(25deg); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .mbti-face, .f-eye, .f-spark { animation: none; }
}

.mbti-cta-txt { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mbti-cta-txt .t { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -.3px; }
.mbti-cta-txt .t .badge {
    margin-left: 6px; font-size: 10px; font-weight: 800; letter-spacing: .6px; vertical-align: 2px;
    color: #fff; background: #8b5cf6; border-radius: 999px; padding: 2px 7px;
}
.mbti-cta-txt .d { font-size: 12.5px; color: var(--body); line-height: 1.5; }
.mbti-go {
    flex: 0 0 auto; font-size: 20px; font-weight: 700; color: #8b5cf6;
    transition: transform .18s ease;
}
.mbti-cta:hover .mbti-go { transform: translateX(4px); }

/* ── 간편 MBTI ── */
.mbti-ans {
    width: 100%; min-height: 54px; padding: 12px 18px;
    border: 1.5px solid var(--hairline-strong); border-radius: var(--radius-card);
    background: var(--canvas); color: var(--ink); font-size: 15px; font-weight: 600;
    font-family: inherit; cursor: pointer; line-height: 1.4;
    transition: all .15s ease;
}
.mbti-ans:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.mbti-ans.on { border-color: var(--ink); background: var(--surface-strong); }
.mbti-prog { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.mbti-track { flex: 1; height: 8px; background: var(--surface-strong); border-radius: 999px; overflow: hidden; }
.mbti-track i { display: block; height: 100%; background: linear-gradient(90deg, var(--sky-mid), var(--ink)); transition: width .3s ease; }
.mbti-prog span { font-size: 12px; font-weight: 700; color: var(--muted); white-space: nowrap; }

/* ── 반응형 ── */
@media (max-width: 639px) {
    .hero { padding-top: 20px; padding-bottom: 12px; }
    .hero h1 { font-size: 22px; letter-spacing: -0.5px; }
    .brand-wrap { top: 14px; left: 14px; }
    .brand { display: none; }                 /* 모바일: T 심볼만 표시해 공간 절약 */
    .brand-img { height: 22px; }
    .dial { height: 96px; margin-top: 4px; }
    .dial-track { top: 20px; }
    .dial-item { width: 60px; flex-basis: 60px; }
    .dial-item .num { width: 34px; height: 34px; font-size: 13px; }
    .dial-item.cur .num { transform: scale(1.45); }
    .dial-item .lb { margin-top: 15px; font-size: 12px; }
    .dial::before, .dial::after { width: 44px; }
    .tax-grid { grid-template-columns: 1fr; }   /* 모바일: 가로형 카드 1열 — 행이 얇아 공간 효율적 */
    .tax-card { padding: 12px 14px; }
    .tax-card .ico { flex-basis: 46px; width: 46px; height: 46px; font-size: 23px; }
    .kpis { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
    .kpi .v { font-size: 14px; }
    .result-hero .amt { font-size: 32px; }
    .grid2 { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
    .hero { padding-top: 40px; }
    .hero h1 { font-size: 36px; letter-spacing: -1.08px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
