/* =========================================================
   Amma — colorful, lifestyle one-pager
   Palette: pastel · Display: Bricolage Grotesque
   Body: Plus Jakarta Sans · Data: DM Mono
   ========================================================= */

:root {
    /* brand pastels */
    --peach: #ECADA0;
    --lavender: #C3B1E1;
    --mint: #A8E6CF;
    --sky: #AEDFF7;

    /* ink + surfaces (all readable text uses ink) */
    --ink: #2B2330;
    --ink-soft: #5a5163;
    --bg: #FFFDFB;
    --surface: #ffffff;
    --line: #efe6e0;

    /* functional */
    --live: #1f9d6b;
    --drop: #c2455e;

    --radius: 22px;
    --radius-sm: 14px;
    --shadow: 0 18px 50px -22px rgba(43, 35, 48, .28);
    --shadow-sm: 0 8px 24px -14px rgba(43, 35, 48, .25);

    --maxw: 1140px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.mono { font-family: "DM Mono", ui-monospace, monospace; }

h1, h2, h3 {
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

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

.container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 40px);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--ink);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    z-index: 200;
}
.skip-link:focus { left: 16px; }

/* focus visibility (quality floor) */
:focus-visible {
    outline: 3px solid var(--ink);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ---------- eyebrow + section heads ---------- */
.eyebrow {
    font-family: "DM Mono", monospace;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: inline-block;
    margin-bottom: 16px;
}

.section { padding: clamp(72px, 10vw, 130px) 0; }

.section__head {
    max-width: 720px;
    margin: 0 auto clamp(40px, 6vw, 64px);
    text-align: center;
}
.section__head--left { text-align: left; margin-inline: 0; }
.section__title { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
.section__lede {
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    white-space: nowrap;
}
.btn--primary {
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(43,35,48,.5); }
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 1.1rem; }

/* ---------- nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(255, 253, 251, .78);
    border-bottom: 1px solid var(--line);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { border-radius: 50%; }
.brand__name {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -.02em;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
    font-weight: 500;
    color: var(--ink-soft);
    transition: color .2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.lang {
    font-family: "DM Mono", monospace;
    font-size: .82rem;
    background: none;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: 7px 12px;
    cursor: pointer;
    color: var(--ink-soft);
    display: inline-flex;
    gap: 5px;
    transition: border-color .2s;
}
.lang:hover { border-color: var(--ink); }
.lang__opt { transition: color .2s, font-weight .2s; }
.lang__opt.is-active { color: var(--ink); font-weight: 500; }
.lang__sep { opacity: .4; }

/* ---------- hero ---------- */
.hero {
    position: relative;
    padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 9vw, 120px);
    overflow: hidden;
}
.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
    z-index: 0;
    pointer-events: none;
}
.hero__blob--a { width: 520px; height: 520px; background: var(--peach); top: -160px; right: -120px; }
.hero__blob--b { width: 440px; height: 440px; background: var(--sky); bottom: -180px; left: -120px; opacity: .5; }
.hero__blob--c { width: 360px; height: 360px; background: var(--lavender); top: 40%; right: 30%; opacity: .35; }

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.hero__copy { max-width: 560px; min-width: 0; }
.hero__stage { min-width: 0; }
.hero__title {
    font-size: clamp(2.1rem, 6.4vw, 4.7rem);
    margin-bottom: 22px;
    overflow-wrap: break-word;
}
.hero__title span { display: block; }
.hero__title-accent {
    background: linear-gradient(105deg, var(--drop), var(--peach) 55%, var(--lavender));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__lede {
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 30px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__note {
    margin-top: 22px;
    font-size: .92rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 9px;
}
.dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--ink-soft);
    display: inline-block;
    flex: none;
}
.dot--live {
    background: var(--live);
    box-shadow: 0 0 0 0 rgba(31, 157, 107, .5);
    animation: pulse 2.4s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(31,157,107,.5); }
    70% { box-shadow: 0 0 0 8px rgba(31,157,107,0); }
    100% { box-shadow: 0 0 0 0 rgba(31,157,107,0); }
}

/* ---- hero stage: chat + floating product cards ---- */
.hero__stage {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat {
    position: relative;
    z-index: 3;
    width: min(381px, 92%);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.chat__bar {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(120deg, var(--peach), var(--lavender));
}
.chat__avatar { border-radius: 50%; border: 2px solid #fff; }
.chat__who { font-weight: 700; font-family: "Bricolage Grotesque", sans-serif; }
.chat__live {
    margin-left: auto;
    font-family: "DM Mono", monospace;
    font-size: .72rem;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.65);
    padding: 3px 9px;
    border-radius: 999px;
}
.chat__body {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 250px;
}
.bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: .92rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(8px);
    animation: rise .4s var(--ease) forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }
.bubble--user {
    align-self: flex-end;
    background: var(--ink);
    color: #fff;
    border-bottom-right-radius: 5px;
}
.bubble--amma {
    align-self: flex-start;
    background: #f4eeea;
    color: var(--ink);
    border-bottom-left-radius: 5px;
}
.bubble--typing { display: inline-flex; gap: 4px; padding: 14px; }
.bubble--typing i {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--ink-soft);
    animation: blink 1.2s infinite both;
}
.bubble--typing i:nth-child(2) { animation-delay: .2s; }
.bubble--typing i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100% { opacity: .25; } 40% { opacity: 1; } }

/* the deal card that "spawns" inside the chat */
.bubble-card {
    align-self: flex-start;
    width: 82%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    border-bottom-left-radius: 5px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: scale(.92);
    animation: pop .45s var(--ease) forwards;
}
@keyframes pop { to { opacity: 1; transform: none; } }
.bubble-card__img {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--mint);
    display: grid; place-items: center;
    font-size: 1.4rem;
    flex: none;
}
.bubble-card__name { font-weight: 600; font-size: .9rem; }
.bubble-card__price {
    font-family: "DM Mono", monospace;
    font-size: .9rem;
    display: flex; align-items: baseline; gap: 7px;
}
.bubble-card__was { color: var(--ink-soft); text-decoration: line-through; font-size: .78rem; }
.bubble-card__now { color: var(--drop); font-weight: 500; }
.bubble-card__target { color: var(--ink-soft); font-size: .78rem; }
.bubble-card__status {
    color: var(--ink-soft);
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--mint);
}

/* floating mood-board cards around the chat */
.prod {
    position: absolute;
    z-index: 2;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 10px;
    width: 168px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 7s ease-in-out infinite;
}
.prod__img {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--tint);
    display: grid; place-items: center;
    font-size: 1.25rem;
    flex: none;
}
.prod__meta { display: flex; flex-direction: column; line-height: 1.25; }
.prod__name { font-size: .76rem; font-weight: 600; }
.prod__price {
    font-family: "DM Mono", monospace;
    font-size: .82rem;
    display: inline-flex; align-items: center; gap: 6px;
}
.prod__drop { color: var(--drop); font-size: .68rem; }
.prod__price--soon { color: var(--ink-soft); font-size: .72rem; }
/* flank the chat — peek out of the side gutters, never sit behind the thread */
.prod--1 { top: 4%; left: -13%; animation-delay: 0s; }
.prod--2 { top: 40%; right: -14%; animation-delay: -2.3s; }
.prod--3 { bottom: 6%; left: -11%; animation-delay: -4.6s; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-10px) rotate(1.5deg); }
}

/* ---------- skills bento ---------- */
.bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: var(--tint);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card--wide { grid-column: span 1; }
.card__tag {
    font-family: "DM Mono", monospace;
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: var(--tint);
    padding: 5px 11px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 16px;
    /* tints are light → ink reads fine */
    color: var(--ink);
}
.card__title { font-size: 1.4rem; margin-bottom: 10px; }
.card__text { color: var(--ink-soft); }

.ticker {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ticker__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 13px;
    background: #faf6f3;
    border-radius: 10px;
    font-size: .86rem;
}
.ticker__row .mono { color: var(--ink-soft); }
.ticker__row b { color: var(--drop); font-weight: 500; }
.stock {
    font-family: "DM Mono", monospace;
    font-size: .72rem;
    font-weight: 500;
    padding: 2px 9px;
    border-radius: 999px;
    white-space: nowrap;
}
.stock--in  { color: #15784f; background: #d8f2e4; }
.stock--low { color: #9a6212; background: #fbeccd; }
.stock--out { color: var(--ink-soft); background: #ece4df; }

/* ---------- compare preview table ---------- */
.cmp {
    margin-top: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #faf6f3;
}
.cmp__row {
    display: grid;
    grid-template-columns: 1fr 121px 121px;
    align-items: center;
    gap: 10px;
    padding: 8px 13px;
    font-size: .8rem;
}
.cmp__row + .cmp__row { border-top: 1px solid var(--line); }
.cmp__row--head {
    font-family: "DM Mono", monospace;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--ink-soft);
    background: #f3ece7;
}
.cmp__spec { color: var(--ink-soft); }
.cmp__col {
    text-align: right;
    font-family: "DM Mono", monospace;
    font-variant-numeric: tabular-nums;
    color: var(--ink-soft);
}
.cmp__col--win {
    color: var(--ink);
    font-weight: 600;
    position: relative;
}
.cmp__col--win::before {
    content: "✓";
    color: #1f9d6b;
    font-weight: 700;
    margin-right: 4px;
}

/* ---------- why ---------- */
.why { background: linear-gradient(180deg, #fff, #fbf5f1); }
.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 48px);
}
.why__item { position: relative; padding-top: 14px; }
.why__num {
    font-size: 1rem;
    color: var(--drop);
    display: block;
    margin-bottom: 14px;
}
.why__item h3 { font-size: 1.4rem; margin-bottom: 10px; }
.why__item p { color: var(--ink-soft); }

/* ---------- platforms ---------- */
.plat__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.plat__card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 22px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plat__card[aria-disabled="true"] { opacity: .62; }
.plat__card--live { border-color: var(--live); }
.plat__card--live:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plat__ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--tint) 55%, #fff);
    display: grid;
    place-items: center;
    transition: transform .3s var(--ease), background .3s var(--ease);
}
.plat__card--live:hover .plat__ring { transform: scale(1.06); }
.plat__icon { width: 38px; height: 38px; }
.plat__name { font-weight: 700; font-family: "Bricolage Grotesque", sans-serif; font-size: 1.15rem; }
.plat__badge {
    font-family: "DM Mono", monospace;
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: #f2ece8;
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.plat__badge--live { color: var(--live); background: rgba(31, 157, 107, .12); }
.plat__act { font-size: .82rem; color: var(--drop); }

/* ---------- faq ---------- */
.faq { background: linear-gradient(180deg, #fbf5f1, #fff); }
.faq__inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}
.acc { display: flex; flex-direction: column; gap: 12px; }
.acc__item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: box-shadow .25s;
}
.acc__item[open] { box-shadow: var(--shadow-sm); }
.acc__item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__icon { position: relative; width: 16px; height: 16px; flex: none; }
.acc__icon::before, .acc__icon::after {
    content: "";
    position: absolute;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s var(--ease);
}
.acc__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.acc__icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.acc__item[open] .acc__icon::after { transform: rotate(90deg); opacity: 0; }
.acc__panel { padding: 0 22px 22px; color: var(--ink-soft); }
.acc__panel code {
    font-family: "DM Mono", monospace;
    font-size: .86em;
    color: var(--ink);
    background: var(--mint);
    padding: 1px 7px;
    border-radius: 6px;
}

/* ---------- CTA band ---------- */
.band {
    padding: clamp(56px, 8vw, 96px) 0;
    background: linear-gradient(120deg, var(--peach), var(--lavender) 60%, var(--sky));
}
.band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.band__title {
    font-size: clamp(1.7rem, 3.8vw, 2.9rem);
    color: var(--ink);
    max-width: 620px;
}

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #efe7e2; padding: 64px 0 32px; }
.footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer .brand__name { color: #fff; }
.footer__tag { margin-top: 16px; color: #b9aeb0; max-width: 320px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__h {
    font-family: "DM Mono", monospace;
    font-size: .74rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9a8f92;
    margin-bottom: 4px;
}
.footer__col a { color: #efe7e2; transition: color .2s; }
.footer__col a:hover { color: var(--peach); }
.footer__soon { color: #8e8487; font-size: .92rem; }
.footer__bottom {
    padding-top: 24px;
    font-size: .85rem;
    color: #8e8487;
}

/* ---------- legal modal ---------- */
body.is-legal-modal-open { overflow: hidden; }

.legal-modal[hidden] { display: none; }
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 40px);
}
.legal-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(43, 35, 48, .66);
    backdrop-filter: blur(8px);
}
.legal-modal__dialog {
    position: relative;
    width: min(700px, 100%);
    max-height: min(760px, calc(100vh - 36px));
    overflow: auto;
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 28px 80px -26px rgba(43, 35, 48, .55);
    padding: clamp(28px, 5vw, 44px);
}
.legal-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font-size: 1.45rem;
    line-height: 1;
    transition: border-color .2s, transform .2s var(--ease);
}
.legal-modal__close:hover {
    border-color: var(--ink);
    transform: translateY(-1px);
}
.legal-modal__eyebrow {
    font-family: "DM Mono", monospace;
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: inline-block;
    margin-bottom: 14px;
}
.legal-modal__title {
    font-size: clamp(1.8rem, 4vw, 2.65rem);
    padding-right: 48px;
    margin-bottom: 22px;
}
.legal-modal__body {
    display: grid;
    gap: 16px;
    color: var(--ink-soft);
}
.legal-modal__body p {
    margin: 0;
    white-space: pre-line;
}

/* ---------- scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__copy { max-width: none; }
    .hero__stage { min-height: 420px; margin-top: 24px; }
    .nav__links { display: none; }
    .why__grid { grid-template-columns: 1fr; gap: 28px; }
    .plat__grid { grid-template-columns: repeat(2, 1fr); }
    .faq__inner { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .bento { grid-template-columns: 1fr; }
    .plat__grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; }
    .nav__cta { display: none; }
    .hero__stage { min-height: 380px; }
    .hero__actions { flex-direction: column; align-items: stretch; width: 100%; }
    .hero__actions .btn { justify-content: center; }
    .prod { width: 144px; }
    .prod--1 { top: 0; left: 0; }
    .prod--2 { bottom: 10%; right: 0; }
    .prod--3 { display: none; }
    .band__inner { flex-direction: column; align-items: flex-start; }
    .legal-modal__dialog { padding-top: 60px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .bubble, .bubble-card { opacity: 1; transform: none; }
}
