/* ============================================================
   세이지 인사이트 — Terracotta Kiln Landing
   Palette: #B86F4F (terracotta) · #D4A574 (tan) · #F2E7D5 (cream)
   Type: Noto Serif KR (display) + Noto Sans KR (body)
   ============================================================ */

:root {
    --terra: #B86F4F;
    --terra-deep: #8f4e36;
    --terra-soft: #cf8e72;
    --tan: #D4A574;
    --tan-deep: #bd8a5a;
    --cream: #F2E7D5;          /* 페이지 + 본문 동일 배경 */
    --card: #f9f1e2;           /* 살짝 밝은 카드 톤 */
    --ink: #43342b;
    --ink-soft: #846b59;
    --line: rgba(184, 111, 79, .16);

    --frame-w: 480px;
    --radius: 22px;
    --shadow-sm: 0 6px 20px rgba(120, 70, 45, .08);
    --shadow-md: 0 18px 44px rgba(120, 70, 45, .14);
    --shadow-lg: 0 26px 60px rgba(120, 70, 45, .18);
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    /* PC 배경 = 본문 배경: 동일한 크림색 */
    background-color: var(--cream);
    /* 동일 색상 위 아주 옅은 종이 질감(색은 그대로) */
    background-image:
        radial-gradient(circle at 18% 12%, rgba(184, 111, 79, .06), transparent 40%),
        radial-gradient(circle at 86% 78%, rgba(212, 165, 116, .09), transparent 42%);
    background-attachment: fixed;
    color: var(--ink);
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -.01em;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 96px;          /* 고정 CTA 공간 */
}

/* 중앙 정렬 H5 컬럼 — 배경과 완전히 융합 (border/shadow 없음) */
.frame {
    width: 100%;
    max-width: var(--frame-w);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

img { display: block; max-width: 100%; }

/* ===================== Top bar ===================== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: rgba(242, 231, 213, .82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 9px; }
.brand-mark {
    display: grid; place-items: center;
    width: 30px; height: 30px;
    border-radius: 9px;
    background: linear-gradient(145deg, var(--terra), var(--terra-deep));
    color: var(--cream);
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}
.brand-mark.sm { width: 26px; height: 26px; font-size: 12px; }
.brand-name {
    font-family: "Noto Serif KR", serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -.02em;
    color: var(--ink);
}
.topbar-badge {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--terra-deep);
    background: rgba(184, 111, 79, .12);
    padding: 5px 11px;
    border-radius: 999px;
}
.topbar-badge i { color: var(--tan-deep); }

/* ===================== Hero ===================== */
.hero { padding: 38px 26px 30px; text-align: center; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--terra-deep);
    background: rgba(212, 165, 116, .18);
    border: 1px solid rgba(184, 111, 79, .28);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: "Noto Serif KR", serif;
    font-weight: 800;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.25;
    letter-spacing: -.03em;
    color: var(--ink);
}
.hero-title .accent {
    position: relative;
    color: var(--terra);
    white-space: nowrap;
}
.hero-title .accent::after {
    content: "";
    position: absolute;
    left: -2px; right: -2px; bottom: 4px;
    height: 12px;
    background: linear-gradient(90deg, rgba(212, 165, 116, .55), rgba(184, 111, 79, .3));
    border-radius: 6px;
    z-index: -1;
}

.hero-sub {
    margin: 18px auto 0;
    max-width: 360px;
    font-size: 14.5px;
    color: var(--ink-soft);
    font-weight: 400;
}
.hero-sub strong { color: var(--terra-deep); font-weight: 600; }

/* ---- 창의적인 비주얼 ---- */
.hero-visual {
    position: relative;
    margin: 34px 0 30px;
    padding-bottom: 38px;     /* 겹치는 카드 공간 */
}

/* 아치형 프레임 + 비대칭 라운드 */
.hero-arch {
    position: relative;
    border-radius: 160px 160px 30px 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, .45);
    transform: rotate(-1.2deg);
    aspect-ratio: 4 / 3.3;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.04) rotate(1.2deg);
    transition: transform 1.1s var(--ease);
}
.hero-arch:hover .hero-img { transform: scale(1.1) rotate(1.2deg); }

/* 그레인 오버레이 */
.hero-grain {
    position: absolute; inset: 0;
    pointer-events: none;
    mix-blend-mode: soft-light;
    opacity: .4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* 떠다니는 칩 */
.hero-chip {
    position: absolute;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600;
    color: var(--terra-deep);
    background: rgba(249, 241, 226, .94);
    backdrop-filter: blur(6px);
    padding: 7px 13px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, .6);
}
.hero-chip i { color: var(--tan-deep); }
.chip-top { top: 14px; right: 4px; z-index: 4; animation: floatY 5s ease-in-out infinite; }

/* 하단 겹치는 카드 */
.hero-card {
    position: absolute;
    left: 14px; bottom: 0;
    display: flex; align-items: center; gap: 12px;
    background: var(--card);
    padding: 12px 16px 12px 13px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, .6);
    text-align: left;
    animation: floatY 6.5s ease-in-out infinite .4s;
}
.hero-card-icon {
    display: grid; place-items: center;
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--tan), var(--tan-deep));
    color: #fff; font-size: 16px;
}
.hero-card strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.hero-card small { font-size: 11.5px; color: var(--ink-soft); }

.hero-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--ink-soft);
}
.hero-note i { color: var(--terra); margin-right: 4px; }

/* ===================== Buttons ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 700;
    font-size: 15.5px;
    letter-spacing: -.01em;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 15px 26px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.btn-icon { width: 22px; height: 22px; border-radius: 6px; object-fit: contain; }

.btn-primary {
    width: 100%;
    max-width: 340px;
    color: #fdf6ec;
    background: linear-gradient(135deg, var(--terra-soft) 0%, var(--terra) 45%, var(--terra-deep) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .35) inset,
        0 -6px 14px rgba(120, 60, 40, .25) inset,
        0 14px 30px rgba(143, 78, 54, .36);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
/* 자동으로 흐르는 광택 */
.btn-primary::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .38) 50%, transparent 70%);
    transform: translateX(-130%);
    animation: btnSheen 4.5s ease-in-out infinite;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .4) inset,
        0 -6px 14px rgba(120, 60, 40, .28) inset,
        0 20px 40px rgba(143, 78, 54, .5);
}
.btn-primary:hover::before { animation: btnSheenFast .8s var(--ease); }
.btn-primary:active { transform: translateY(0) scale(.98); }
.btn-primary .btn-icon { transition: transform .35s var(--ease); }
.btn-primary:hover .btn-icon { transform: scale(1.12) rotate(-6deg); }

/* 클릭 리플 */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    z-index: 0;
    animation: rippleOut .6s ease-out forwards;
}

/* ===================== Blocks ===================== */
.block { padding: 34px 26px; }

.block-head { text-align: center; margin-bottom: 26px; }
.kicker {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--tan-deep);
    margin-bottom: 12px;
}
.block-head h2 {
    font-family: "Noto Serif KR", serif;
    font-weight: 700;
    font-size: clamp(21px, 6vw, 25px);
    line-height: 1.4;
    letter-spacing: -.025em;
    color: var(--ink);
}

/* ---- 무료 혜택 리스트 ---- */
.perk-list { display: flex; flex-direction: column; gap: 12px; }
.perk {
    display: flex; align-items: center; gap: 14px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.perk:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.perk-ic {
    display: grid; place-items: center;
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: 12px;
    background: rgba(184, 111, 79, .12);
    color: var(--terra-deep);
    font-size: 17px;
}
.perk:nth-child(2) .perk-ic { background: rgba(212, 165, 116, .2); color: var(--tan-deep); }
.perk p { font-size: 14.5px; font-weight: 500; color: var(--ink); }

/* ---- 특징 (이미지 + 텍스트) ---- */
.feature {
    display: grid;
    grid-template-columns: 116px 1fr;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}
.feature-rev { grid-template-columns: 1fr 116px; }
.feature-rev .feature-media { order: 2; }
.feature-rev .feature-body { order: 1; text-align: right; }

.feature-media {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, .55);
    aspect-ratio: 1 / 1;
    background: var(--card);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feature:hover .feature-media img { transform: scale(1.07); }
.tilt-left { transform: rotate(-3deg); }
.tilt-right { transform: rotate(3deg); }
.feature:hover .tilt-left,
.feature:hover .tilt-right { transform: rotate(0); transition: transform .5s var(--ease); }

.feature-tag {
    display: inline-block;
    font-size: 10.5px; font-weight: 700; letter-spacing: .14em;
    color: var(--tan-deep);
    background: rgba(212, 165, 116, .2);
    padding: 3px 9px; border-radius: 6px;
    margin-bottom: 8px;
}
.feature-body h3 {
    font-family: "Noto Serif KR", serif;
    font-weight: 700; font-size: 18px;
    letter-spacing: -.02em; color: var(--ink);
    margin-bottom: 6px;
}
.feature-body p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* ---- 체크 그리드 ---- */
.check-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    list-style: none;
}
.check-grid li {
    display: flex; align-items: flex-start; gap: 11px;
    font-size: 14px; font-weight: 500; color: var(--ink);
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 16px;
}
.check-grid li i {
    flex-shrink: 0;
    margin-top: 3px;
    width: 20px; height: 20px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--terra), var(--terra-deep));
    color: #fff; font-size: 10px;
}

.disclaimer-inline {
    margin-top: 22px;
    font-size: 12px;
    line-height: 1.7;
    color: var(--ink-soft);
    background: rgba(184, 111, 79, .07);
    border-left: 3px solid var(--terra);
    border-radius: 0 10px 10px 0;
    padding: 13px 15px;
}

/* ===================== Footer ===================== */
.footer {
    padding: 32px 26px 40px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, transparent, rgba(184, 111, 79, .05));
}
.footer-brand {
    display: flex; align-items: center; gap: 9px;
    font-family: "Noto Serif KR", serif; font-weight: 700; font-size: 16px;
    color: var(--ink);
    margin-bottom: 18px;
}
.footer-info { margin-bottom: 20px; }
.footer-info-h {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: var(--terra-deep);
    margin-bottom: 9px;
}
.footer-info p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.9; }
.footer-note { margin-top: 8px; font-size: 11.5px; opacity: .85; }

.footer-links {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 18px;
}
.footer-links button {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: "Noto Sans KR", sans-serif;
    font-size: 12px; font-weight: 500;
    color: var(--terra-deep);
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 13px;
    cursor: pointer;
    transition: background .25s, color .25s, transform .25s;
}
.footer-links button i { color: var(--tan-deep); }
.footer-links button:hover { background: var(--terra-deep); color: #fff; transform: translateY(-1px); }
.footer-links button:hover i { color: #fff; }

.copyright { font-size: 11px; color: var(--ink-soft); opacity: .8; }

/* ===================== 고정 CTA ===================== */
.fixed-cta {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 50;
    width: 100%;
    max-width: var(--frame-w);
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(242, 231, 213, 0), rgba(242, 231, 213, .96) 38%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.btn-fixed {
    width: 100%;
    max-width: none;
    box-shadow: 0 -2px 0 rgba(255,255,255,.4) inset, 0 16px 34px rgba(143, 78, 54, .42);
    animation: pulseGlow 2.8s ease-in-out infinite;
}
.btn-arrow { font-size: 13px; transition: transform .3s var(--ease); }
.btn-fixed:hover .btn-arrow { transform: translateX(4px); }

/* ===================== 모달 ===================== */
.modal-root {
    position: fixed; inset: 0; z-index: 100;
    display: none;
    align-items: center; justify-content: center;
    padding: 20px;
}
.modal-root.open { display: flex; }
.modal-overlay {
    position: absolute; inset: 0;
    background: rgba(67, 52, 43, .5);
    backdrop-filter: blur(3px);
    animation: fadeIn .3s ease;
}
.modal {
    position: relative;
    width: 100%; max-width: 420px;
    max-height: 80vh;
    overflow-y: auto;
    background: var(--cream);
    border-radius: 22px;
    padding: 30px 24px 26px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, .5);
    animation: modalUp .4s var(--ease);
}
.modal-close {
    position: absolute; top: 14px; right: 14px;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border: none; cursor: pointer;
    border-radius: 50%;
    background: rgba(184, 111, 79, .12);
    color: var(--terra-deep);
    font-size: 15px;
    transition: background .25s, transform .25s;
}
.modal-close:hover { background: var(--terra-deep); color: #fff; transform: rotate(90deg); }

.modal-pane { display: none; }
.modal-pane.active { display: block; }
.modal-pane h3 {
    display: flex; align-items: center; gap: 9px;
    font-family: "Noto Serif KR", serif; font-weight: 700; font-size: 19px;
    color: var(--ink); margin-bottom: 16px;
}
.modal-pane h3 i { color: var(--tan-deep); }
.modal-pane h4 {
    font-size: 13.5px; font-weight: 700; color: var(--terra-deep);
    margin: 16px 0 5px;
}
.modal-pane p { font-size: 13px; line-height: 1.75; color: var(--ink-soft); }

/* ===================== Animations ===================== */
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes dash { to { stroke-dashoffset: -120; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalUp { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 -2px 0 rgba(255,255,255,.4) inset, 0 16px 34px rgba(143, 78, 54, .42); }
    50% { box-shadow: 0 -2px 0 rgba(255,255,255,.4) inset, 0 16px 44px rgba(143, 78, 54, .6); }
}

/* 스크롤 등장 */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* 방향성 등장 */
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-left.in, .reveal-right.in { transform: none; }

/* ===================== 추가 이펙트 ===================== */

/* 스크롤 진행 표시줄 */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 3px;
    z-index: 60;
    background: rgba(184, 111, 79, .1);
}
.scroll-progress span {
    display: block; height: 100%; width: 0;
    background: linear-gradient(90deg, var(--tan), var(--terra), var(--terra-deep));
    box-shadow: 0 0 10px rgba(184, 111, 79, .5);
    transition: width .12s linear;
}

/* 배경 분위기 오브 — 배경과 동일 계열, 아주 옅게 */
.bg-deco {
    position: fixed; inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .5;
}
.orb-1 {
    width: 420px; height: 420px;
    top: -80px; left: -160px;
    background: radial-gradient(circle, rgba(212, 165, 116, .55), transparent 70%);
    animation: orbDrift 22s ease-in-out infinite;
}
.orb-2 {
    width: 360px; height: 360px;
    bottom: 4%; right: -150px;
    background: radial-gradient(circle, rgba(184, 111, 79, .4), transparent 70%);
    animation: orbDrift 28s ease-in-out infinite reverse;
}
.orb-3 {
    width: 300px; height: 300px;
    top: 42%; left: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, .3), transparent 70%);
    animation: orbDrift 25s ease-in-out infinite 2s;
}
.frame { z-index: 1; }

/* 히어로 아우라 / 장식 */
.hero-arch { position: relative; z-index: 2; }
.hero-card { z-index: 3; }

.hero-aura {
    position: absolute;
    z-index: 0;
    left: 50%; top: 44%;
    width: 92%; aspect-ratio: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 165, 116, .45), rgba(184, 111, 79, .12) 45%, transparent 68%);
    filter: blur(14px);
    animation: auraPulse 6s ease-in-out infinite;
    pointer-events: none;
}
.deco-dot {
    position: absolute; z-index: 1;
    border-radius: 50%;
    pointer-events: none;
}
.dot-1 {
    width: 12px; height: 12px; top: 8%; left: 6%;
    background: var(--terra);
    box-shadow: 0 0 0 5px rgba(184, 111, 79, .15);
    animation: floatY 5.5s ease-in-out infinite;
}
.dot-2 {
    width: 8px; height: 8px; bottom: 24%; right: 4%;
    background: var(--tan-deep);
    box-shadow: 0 0 0 5px rgba(212, 165, 116, .2);
    animation: floatY 4.5s ease-in-out infinite 1s;
}
.deco-ring {
    position: absolute; z-index: 1;
    width: 46px; height: 46px;
    bottom: 8%; left: 2%;
    border: 2px dashed rgba(184, 111, 79, .35);
    border-radius: 50%;
    animation: spinSlow 16s linear infinite;
    pointer-events: none;
}

/* 아치 위 광택 스윕 */
.hero-shine {
    position: absolute; inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, .35) 50%, transparent 62%);
    transform: translateX(-120%);
}
.hero-arch:hover .hero-shine { animation: heroShine 1s var(--ease); }

/* 특징 이미지 호버 광택 */
.feature-media { position: relative; }
.media-shine {
    position: absolute; inset: 0; z-index: 2;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, .4) 50%, transparent 60%);
    transform: translateX(-120%);
}
.feature:hover .media-shine { animation: heroShine .9s var(--ease); }

/* 버튼 내부 요소는 광택/리플 위로 */
.btn-primary > i,
.btn-primary > .btn-icon { position: relative; z-index: 2; }

/* ===================== 추가 keyframes ===================== */
@keyframes btnSheen {
    0% { transform: translateX(-130%); }
    18%, 100% { transform: translateX(130%); }
}
@keyframes btnSheenFast {
    from { transform: translateX(-130%); }
    to { transform: translateX(130%); }
}
@keyframes rippleOut {
    to { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}
@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.08); }
    66% { transform: translate(-30px, 24px) scale(.96); }
}
@keyframes auraPulse {
    0%, 100% { opacity: .65; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes heroShine {
    from { transform: translateX(-120%); }
    to { transform: translateX(120%); }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .chip-top, .hero-card, .btn-fixed, .btn-primary::before,
    .orb, .hero-aura, .deco-dot, .deco-ring { animation: none; }
    .hero-img { transform: scale(1.04) rotate(1.2deg); }
}
