/* ==========================================================================
   Mirrotel Mobile — styles
   ========================================================================== */

:root {
  /* Brand */
  --indigo: #4f46e5;
  --indigo-600: #4338ca;
  --violet: #7c3aed;
  --violet-2: #a855f7;
  --accent: #fb7185;

  /* Ink & neutrals */
  --ink: #0f172a;
  --ink-2: #1e293b;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: #e6e8ef;
  --bg: #ffffff;
  --bg-alt: #f6f7fb;
  --bg-dark: #16123a;

  /* Effects */
  --grad-brand: linear-gradient(135deg, #4f46e5 0%, #7c3aed 55%, #a855f7 100%);
  --grad-text: linear-gradient(100deg, #c4b5fd 0%, #f9a8d4 100%);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 4px 12px rgba(15, 23, 42, .05);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, .09);
  --shadow-lg: 0 24px 60px rgba(31, 22, 84, .18);
  --shadow-brand: 0 12px 28px rgba(79, 70, 229, .32);

  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 28px;

  --container: 1160px;
  --header-h: 74px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

/* ============================================================ Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 13px 22px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(79, 70, 229, .42); }

.btn-white { background: #fff; color: var(--indigo-600); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.24); }

.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

/* ============================================================ Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(15,23,42,.06); }
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 22px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; }
.brand-mark { display: inline-flex; filter: drop-shadow(0 6px 14px rgba(124,58,237,.35)); }
.brand-name { font-size: 1.28rem; letter-spacing: -0.03em; color: var(--ink); }
.brand-sub { color: var(--muted-2); font-weight: 600; margin-left: 5px; font-size: .82em; letter-spacing: -0.01em; }

.main-nav { display: flex; align-items: center; gap: 28px; margin-left: 14px; }
.main-nav a { color: var(--ink-2); font-weight: 500; font-size: .97rem; position: relative; padding: 6px 0; transition: color .15s; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; border-radius: 2px; background: var(--grad-brand); transition: width .22s ease; }
.main-nav a:hover { color: var(--indigo); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 12px; border-radius: 999px;
  color: var(--ink-2); font-weight: 600; font-size: .9rem;
  box-shadow: inset 0 0 0 1.5px var(--line); background: #fff;
  transition: box-shadow .15s, background .15s;
}
.lang-btn:hover { box-shadow: inset 0 0 0 1.5px #cfd3e3; }
.lang-btn .chev { transition: transform .2s ease; opacity: .7; }
.lang-switch.open .lang-btn .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px);
  list-style: none; margin: 0; padding: 6px;
  background: #fff; border-radius: 16px; min-width: 178px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98);
  transform-origin: top right; transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang-menu li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px; cursor: pointer;
  font-weight: 500; font-size: .95rem; color: var(--ink-2); transition: background .12s;
}
.lang-menu li:hover { background: var(--bg-alt); }
.lang-menu li.active { color: var(--indigo); font-weight: 700; background: #f1f0fe; }
.lang-menu li .tick { margin-left: auto; opacity: 0; color: var(--indigo); }
.lang-menu li.active .tick { opacity: 1; }
.lang-menu .lang-code { font-size: .74rem; font-weight: 700; color: var(--muted-2); background: var(--bg-alt); padding: 2px 7px; border-radius: 6px; }
.lang-menu li.active .lang-code { color: var(--indigo); background: #e9e7fd; }

/* Mobile menu toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px 8px; }
.menu-toggle span { width: 22px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 10px 22px 22px; background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.mobile-menu a { padding: 13px 4px; font-weight: 600; color: var(--ink-2); border-bottom: 1px solid var(--bg-alt); }
.mobile-menu a.btn { margin-top: 12px; border: none; color: #fff; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ============================================================ Hero */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 70px) 0 96px;
  background:
    radial-gradient(1100px 520px at 78% -8%, #4f46e5 0%, rgba(79,70,229,0) 60%),
    linear-gradient(165deg, #221a5c 0%, #1a1442 45%, #130f30 100%);
  color: #fff;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; pointer-events: none; }
.hero-glow-1 { width: 420px; height: 420px; background: #7c3aed; top: -80px; right: 4%; }
.hero-glow-2 { width: 360px; height: 360px; background: #ec4899; bottom: -140px; left: -60px; opacity: .35; }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px; font-size: .82rem; font-weight: 600; letter-spacing: .01em;
}
.badge-hero { background: rgba(255,255,255,.12); color: #e9e7ff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.badge-hero::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,.25); }

.hero-title { font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 900; margin: 22px 0 0; letter-spacing: -0.035em; }
.hero-title .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { margin-top: 20px; font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: #c7c9e8; max-width: 33em; line-height: 1.62; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 9px; margin-top: 28px; font-size: .92rem; color: #a5a8d0; }
.hero-trust svg { color: #34d399; flex-shrink: 0; }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; }
.phone {
  position: relative; width: 268px; height: 552px; border-radius: 42px;
  background: linear-gradient(160deg, #2b2660, #1c1740); padding: 12px;
  box-shadow: 0 40px 80px rgba(10, 6, 40, .6), inset 0 0 0 2px rgba(255,255,255,.06);
  z-index: 2;
}
.phone-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: #100c2a; border-radius: 0 0 16px 16px; z-index: 3; }
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: linear-gradient(180deg, #f4f4fb 0%, #ffffff 30%);
  padding: 42px 18px 20px; display: flex; flex-direction: column; gap: 14px;
}
.app-top { display: flex; align-items: center; justify-content: space-between; }
.app-brand { font-weight: 800; font-size: 1.1rem; color: var(--indigo); letter-spacing: -.02em; }
.app-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .9rem; }
.app-balance { background: var(--grad-brand); border-radius: 18px; padding: 15px 16px; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 10px; box-shadow: var(--shadow-brand); }
.app-balance-main { display: grid; gap: 2px; }
.app-balance-label { font-size: .74rem; opacity: .85; }
.app-balance-value { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; white-space: nowrap; }
.app-topup { flex-shrink: 0; background: rgba(255,255,255,.22); color: #fff; font-weight: 600; font-size: .74rem; padding: 8px 12px; border-radius: 999px; }
.app-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.app-action { background: #f1f2f9; border-radius: 15px; padding: 13px 11px; display: flex; flex-direction: column; gap: 8px; font-size: .76rem; font-weight: 600; color: var(--ink-2); }
.app-action-ic { width: 34px; height: 34px; border-radius: 11px; background: #fff; display: grid; place-items: center; color: var(--indigo); box-shadow: var(--shadow-sm); }
.app-protect { margin-top: auto; display: flex; align-items: center; gap: 9px; background: #ecfdf5; border: 1px solid #d1fae5; border-radius: 14px; padding: 11px 12px; }
.app-protect-ic { width: 30px; height: 30px; border-radius: 9px; background: #10b981; color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.app-protect-txt { font-size: .82rem; font-weight: 700; color: #065f46; }
.app-toggle { margin-left: auto; font-size: .68rem; font-weight: 700; color: #059669; background: #d1fae5; padding: 4px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }

.float-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.96); color: var(--ink);
  padding: 11px 14px; border-radius: 15px; font-size: .82rem; font-weight: 600;
  box-shadow: var(--shadow-lg); backdrop-filter: blur(6px);
}
.float-chip small { display: block; color: var(--muted); font-weight: 500; font-size: .72rem; margin-top: 1px; }
.float-chip strong { font-weight: 700; }
.chip-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.chip-ic-green { background: #10b981; }
.chip-ic-blue { background: #3b82f6; }
.chip-ic-violet { background: var(--violet); }
.chip-a { top: 62px; left: -18px; animation: floaty 5s ease-in-out infinite; }
.chip-b { top: 300px; right: -30px; animation: floaty 6s ease-in-out infinite .6s; }
.chip-c { bottom: 46px; left: -12px; animation: floaty 5.5s ease-in-out infinite .3s; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

/* ============================================================ Stats */
.stats-wrap { background: var(--bg); }
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: -46px; position: relative; z-index: 5;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 24px; box-shadow: var(--shadow-md);
}
.stat { text-align: center; }
.stat-num { display: block; font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 900; letter-spacing: -.03em; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { display: block; margin-top: 4px; color: var(--muted); font-size: .92rem; font-weight: 500; }

/* ============================================================ Sections */
.section { padding: clamp(64px, 9vw, 108px) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 60px); text-align: center; }
.eyebrow { display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--indigo); margin-bottom: 14px; }
.eyebrow-light { color: #c4b5fd; }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.55rem); font-weight: 800; }
.section-sub { margin-top: 16px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.14rem); line-height: 1.6; }
.section-sub-light { color: #c7c9e8; }

/* Cards grid */
.cards { display: grid; gap: 22px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #d7dbec; }
.card-lg { padding: 32px 28px; }
.card-title { font-size: 1.16rem; margin-top: 18px; }
.card-text { margin-top: 10px; color: var(--muted); font-size: .96rem; line-height: 1.6; }
.card-badge {
  position: absolute; top: 18px; right: 18px;
  font-size: .68rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  color: var(--violet); background: #f3f0ff; padding: 5px 10px; border-radius: 999px;
}

.card-ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; color: #fff; }
.ic-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.ic-violet { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.ic-emerald { background: linear-gradient(135deg, #34d399, #059669); }
.ic-rose { background: linear-gradient(135deg, #fb7185, #e11d48); }
.ic-amber { background: linear-gradient(135deg, #fbbf24, #f59e0b); }

/* Business */
.biz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.biz-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s;
}
.biz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.biz-card .card-ic { flex-shrink: 0; }
.biz-cta { text-align: center; margin-top: 44px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text { margin-top: 20px; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.about-points { display: grid; gap: 18px; }
.about-point { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.point-ic { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, #eef2ff, #f5f3ff); color: var(--indigo); display: grid; place-items: center; flex-shrink: 0; }
.about-point h4 { font-size: 1.05rem; font-weight: 700; }
.about-point p { margin-top: 5px; color: var(--muted); font-size: .93rem; line-height: 1.55; }

/* ============================================================ Pre-order */
.preorder {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 460px at 15% 0%, rgba(124,58,237,.5) 0%, rgba(124,58,237,0) 60%),
    linear-gradient(160deg, #1e1a4e 0%, #151130 100%);
  color: #fff;
}
.preorder-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.preorder-copy .section-title { color: #fff; }
.preorder-email { margin-top: 26px; color: #c7c9e8; font-size: 1rem; }
.email-link { color: #fff; font-weight: 700; border-bottom: 1.5px solid rgba(255,255,255,.4); transition: border-color .15s; }
.email-link:hover { border-color: #fff; }

.form-card { background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); color: var(--ink); }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .98rem; color: var(--ink);
  padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--line);
  background: #fbfbfe; transition: border-color .15s, box-shadow .15s, background .15s; width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--indigo); background: #fff;
  box-shadow: 0 0 0 4px rgba(79,70,229,.12);
}
.field input:invalid.touched { border-color: #f43f5e; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .88rem; color: var(--muted); margin: 4px 0 20px; line-height: 1.45; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--indigo); flex-shrink: 0; cursor: pointer; }

.form-success { text-align: center; padding: 30px 10px; }
.success-check { width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%; background: linear-gradient(135deg, #34d399, #059669); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(16,185,129,.4); animation: pop .4s ease; }
.form-success h3 { font-size: 1.5rem; }
.form-success p { margin-top: 10px; color: var(--muted); }
@keyframes pop { 0% { transform: scale(.6); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* ============================================================ Footer */
.site-footer { background: #0e0b26; color: #b9bce0; padding: 64px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.brand-footer .brand-name { color: #fff; }
.footer-tagline { margin-top: 16px; max-width: 30em; color: #9a9dc8; line-height: 1.6; }
.footer-launch { margin-top: 12px; font-weight: 600; color: #c4b5fd; font-size: .92rem; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: #7d80ad; margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; padding: 6px 0; color: #b9bce0; font-size: .96rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); font-size: .86rem; color: #7d80ad; }

/* ============================================================ Reveal animation
   Gated behind .js so that, if JavaScript never runs, all content stays visible. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* ============================================================ Responsive */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; min-height: 500px; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .biz-grid, .about-grid, .preorder-inner { grid-template-columns: 1fr; }
  .about-grid { gap: 34px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 620px) {
  .cards-4, .cards-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 24px; margin-top: -38px; padding: 26px; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .hero { padding-top: calc(var(--header-h) + 44px); }
  .brand-sub { display: none; }
  .float-chip { font-size: .76rem; }
  .chip-a { left: -6px; }
  .chip-b { right: -8px; }
}

@media (max-width: 380px) {
  .phone { width: 240px; height: 500px; }
  .chip-b { right: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip { animation: none; }
}
