/* Mizan Landing — bilingual */
:root {
  --ink: #080D1F;
  --ink-2: #0D1530;
  --ink-3: #131E40;
  --line: rgba(255,255,255,0.07);
  --line-strong: rgba(255,255,255,0.14);
  --gold: #D4A24C;
  --gold-2: #EBC474;
  --gold-deep: #A87826;
  --gold-soft: rgba(212,162,76,0.12);
  --paper: #F6F3EC;
  --text: #ECEEF8;
  --text-dim: #95A0BD;
  --emerald: #2E9D77;
  --rose: #C95A6A;
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif;
  background: var(--ink); color: var(--text);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .3s ease;
}
body[data-lang="en"] { font-family: "Inter", "IBM Plex Sans Arabic", system-ui, sans-serif; }
body[data-lang="ar"] { direction: rtl; }
body[data-lang="en"] { direction: ltr; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

/* hide elements based on language */
[data-lang="en"] .ar-only { display: none !important; }
[data-lang="ar"] .en-only { display: none !important; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ============== TYPOGRAPHY ============== */
.eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  font-family: "Inter", sans-serif;
}
[data-lang="ar"] .eyebrow { letter-spacing: 0.18em; font-family: "IBM Plex Sans Arabic", sans-serif; }
.section-title {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.1; font-weight: 600; margin: 14px 0 18px;
  letter-spacing: -0.015em;
}
.section-sub {
  color: var(--text-dim); font-size: 18px; line-height: 1.7; max-width: 660px;
}
.accent-grad {
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 70%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 12px;
  font-size: 15px; font-weight: 500;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
  color: #1A1304;
  box-shadow: 0 12px 28px -10px rgba(212,162,76,0.55), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -10px rgba(212,162,76,0.7); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.28); }
.btn .arrow { transition: transform .2s ease; }
[data-lang="ar"] .btn .arrow { transform: scaleX(-1); }
.btn:hover .arrow { transform: translateX(2px); }
[data-lang="ar"] .btn:hover .arrow { transform: scaleX(-1) translateX(2px); }

/* ============== LOGO MARK ============== */
/* Refined balance mark - bilingual lockup */
.logo-lockup { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  box-shadow: 0 8px 22px -8px rgba(212,162,76,0.55), inset 0 1px 0 rgba(255,255,255,0.45);
  border: 1px solid rgba(212,162,76,0.35);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 8px 24px -8px rgba(0,0,0,0.4);
}
.logo-mark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(255,255,255,0.35), transparent 60%);
}
.logo-mark svg { position: relative; z-index: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo-text .primary { font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.logo-text .secondary { font-size: 10px; color: var(--text-dim); letter-spacing: 0.18em; text-transform: uppercase; font-family: "Inter", sans-serif; }

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(8,13,31,0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; max-width: 1320px; margin: 0 auto;
}
.nav-links { display: flex; gap: 32px; font-size: 14.5px; color: var(--text-dim); }
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.lang-switch {
  display: inline-flex; gap: 2px; padding: 3px;
  border: 1px solid var(--line-strong); border-radius: 10px;
  background: rgba(255,255,255,0.03);
}
.lang-switch button {
  padding: 7px 12px; font-size: 12px; font-weight: 500;
  border-radius: 7px; color: var(--text-dim);
  font-family: "Inter", sans-serif; letter-spacing: 0.05em;
  transition: all .15s ease;
}
.lang-switch button.active { background: var(--gold-soft); color: var(--gold-2); }
@media (max-width: 980px) { .nav-links { display: none; } }

/* ============== HERO ============== */
.hero { position: relative; padding: 84px 0 60px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero h1 {
  font-size: clamp(44px, 6vw, 84px); line-height: 1.02; font-weight: 600;
  letter-spacing: -0.025em; margin: 16px 0 22px;
}
.hero p.lead {
  font-size: 19px; line-height: 1.7; color: var(--text-dim); max-width: 540px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta { display: flex; gap: 32px; flex-wrap: wrap; color: var(--text-dim); font-size: 13.5px; }
.hero-meta b { color: var(--text); font-weight: 600; display: block; font-size: 24px; margin-bottom: 2px; }

/* Hero scale visual - refined */
.scale-stage {
  position: relative; aspect-ratio: 1/1; max-width: 540px; margin: 0 auto;
}
.scale-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(212,162,76,0.18);
  animation: spin 80s linear infinite;
}
.scale-ring.r2 { inset: 14%; border-style: solid; border-color: rgba(255,255,255,0.05); animation-duration: 100s; animation-direction: reverse; }
.scale-ring.r3 { inset: 28%; animation-duration: 60s; }
@keyframes spin { to { transform: rotate(360deg); } }
.scale-center {
  position: absolute; inset: 38%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 25%, #1B2858 0%, #0F1B3B 60%, #080D1F 100%);
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
}
.scale-mark-inner {
  width: 76px; height: 76px; border-radius: 18px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
  display: grid; place-items: center;
  box-shadow: 0 14px 40px -8px rgba(212,162,76,0.6), inset 0 2px 0 rgba(255,255,255,0.4);
}
.scale-label {
  position: absolute; top: 70%; left: 50%; transform: translateX(-50%);
  text-align: center; width: 100%;
}
.scale-label .name { font-size: 30px; font-weight: 600; letter-spacing: -0.01em; }
.scale-label .sub { color: var(--text-dim); font-size: 13px; margin-top: 6px; letter-spacing: 0.04em; }
.float-chip {
  position: absolute; padding: 9px 14px; font-size: 13px;
  background: rgba(13,21,48,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong); border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
  animation: bob 6s ease-in-out infinite;
}
.float-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.bg-glow { position: absolute; pointer-events: none; filter: blur(80px); opacity: .55; }
.bg-glow.g1 { top: -120px; right: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212,162,76,0.35) 0%, transparent 70%); }
.bg-glow.g2 { bottom: -200px; left: -160px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(46,157,119,0.18) 0%, transparent 70%); }

/* ============== SECTIONS ============== */
section { position: relative; }
.s-pad { padding: 110px 0; }
.s-pad-sm { padding: 70px 0; }

.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.strip-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 760px) { .strip-row { grid-template-columns: repeat(2, 1fr); } }
.strip-item { text-align: center; }
.strip-item b { display: block; font-size: 26px; font-weight: 600; }
.strip-item span { color: var(--text-dim); font-size: 13px; }

/* ============== FEATURES (capability cards) ============== */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px;
}
@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features { grid-template-columns: 1fr; } }
.feature {
  padding: 26px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
  border: 1px solid var(--line);
  transition: border-color .2s ease, transform .2s ease, background .2s;
  position: relative; overflow: hidden;
}
.feature:hover { border-color: rgba(212,162,76,0.35); transform: translateY(-2px); }
.feature .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-soft); border: 1px solid rgba(212,162,76,0.25);
  display: grid; place-items: center; color: var(--gold);
  margin-bottom: 18px;
}
.feature h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.feature p { color: var(--text-dim); font-size: 14px; line-height: 1.65; margin: 0; }
.feature ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 6px; }
.feature ul li { color: var(--text-dim); font-size: 13px; padding-inline-start: 18px; position: relative; }
.feature ul li::before {
  content: ""; position: absolute; inset-inline-start: 4px; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}

/* ============== SHOWCASE ============== */
.showcase-wrap {
  margin-top: 48px;
  position: relative; border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #0F1B3B 0%, #080D1F 100%);
  padding: 22px;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.7);
}
.tab-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.tab {
  padding: 9px 14px; font-size: 13.5px; border-radius: 10px;
  border: 1px solid var(--line); color: var(--text-dim);
  transition: all .2s ease;
}
.tab.active { background: var(--gold-soft); border-color: rgba(212,162,76,0.4); color: var(--gold-2); }
.tab:hover:not(.active) { border-color: var(--line-strong); color: var(--text); }
.shot { width: 100%; border-radius: 12px; border: 1px solid var(--line); transition: opacity .25s ease; }
.shot-host { width: 100%; border-radius: 12px; overflow: hidden; transition: opacity .25s ease; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); }
.browser-bar {
  display: flex; align-items: center; gap: 8px; padding: 8px 12px;
  border-bottom: 1px solid var(--line); margin-bottom: 12px;
}
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-bar .url {
  flex: 1; padding: 6px 12px; font-family: "Inter", monospace;
  font-size: 12px; color: var(--text-dim);
  background: rgba(255,255,255,0.04); border-radius: 8px;
  text-align: center; direction: ltr;
}

/* ============== MODULES (full inventory) ============== */
.modules {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px;
}
@media (max-width: 980px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .modules { grid-template-columns: 1fr; } }
.module {
  padding: 28px; background: var(--ink);
  display: flex; gap: 16px;
  transition: background .2s ease;
}
.module:hover { background: var(--ink-2); }
.module .ico {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(212,162,76,0.3);
  background: var(--gold-soft); color: var(--gold);
  display: grid; place-items: center; flex-shrink: 0;
}
.module h4 { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.module p { margin: 0; color: var(--text-dim); font-size: 13.5px; line-height: 1.6; }
.module .tag {
  display: inline-block; margin-top: 10px;
  font-size: 10.5px; padding: 3px 8px; border-radius: 6px;
  background: rgba(255,255,255,0.04); color: var(--text-dim);
  letter-spacing: 0.05em; text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
.module .tag.gold { background: var(--gold-soft); color: var(--gold-2); }

/* ============== ROLES ============== */
.roles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 48px; }
@media (max-width: 980px) { .roles { grid-template-columns: repeat(2, 1fr); } }
.role {
  padding: 22px 18px; border-radius: var(--radius);
  border: 1px solid var(--line); transition: border-color .2s ease;
}
.role:hover { border-color: var(--line-strong); }
.role .swatch { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 14px; }
.role h5 { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.role span { color: var(--text-dim); font-size: 13px; }

/* ============== STEPS ============== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step {
  padding: 22px; border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.012);
}
.step .num { font-family: "Inter", monospace; font-size: 12.5px; color: var(--gold); letter-spacing: 0.1em; }
.step h4 { font-size: 17px; font-weight: 600; margin: 8px 0 6px; }
.step p { color: var(--text-dim); font-size: 13.5px; line-height: 1.6; margin: 0; }

/* ============== SUPERADMIN BAND ============== */
.superadmin-band {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #16234A 0%, #0B1530 100%);
  border: 1px solid var(--line-strong); padding: 56px;
  margin-top: 48px;
}
@media (max-width: 880px) { .superadmin-band { grid-template-columns: 1fr; padding: 36px; } }
.superadmin-band ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.superadmin-band ul li {
  display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-dim);
}
.superadmin-band ul li svg { color: var(--gold); flex-shrink: 0; }

/* ============== CTA ============== */
.cta {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(212,162,76,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #14224C 0%, #0B1530 100%);
  border: 1px solid var(--line-strong);
  padding: 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
@media (max-width: 760px) { .cta { grid-template-columns: 1fr; padding: 36px; } }

/* ============== FORM ============== */
.form-wrap {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 44px;
}
@media (max-width: 880px) { .form-wrap { grid-template-columns: 1fr; padding: 30px; } }
.form-side h3 { margin: 12px 0 14px; font-size: 28px; font-weight: 600; line-height: 1.25; }
.form-side p { color: var(--text-dim); line-height: 1.7; }
.form-side ul { list-style: none; padding: 0; margin: 24px 0 0; }
.form-side ul li {
  display: flex; align-items: center; gap: 10px; padding: 10px 0;
  border-bottom: 1px dashed var(--line); font-size: 14px; color: var(--text-dim);
}
.form-side ul li svg { color: var(--gold); flex-shrink: 0; }

.form { display: grid; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; color: var(--text); font-weight: 500; }
.field label .req { color: var(--gold); margin-inline-start: 4px; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-strong);
  border-radius: 10px; padding: 12px 14px;
  color: var(--text); font-size: 14px; font-family: inherit;
  transition: border-color .15s ease, background .15s ease; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #6F7892; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,0.06);
}
.field textarea { resize: vertical; min-height: 88px; }

/* Custom dropdown */
.mz-dd { position: relative; }
.mz-dd-trigger {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 12px 14px; font-size: 14.5px; color: var(--text);
  font-family: inherit; text-align: start;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: border-color .15s ease, background .15s ease;
}
.mz-dd-trigger:hover { border-color: rgba(255,255,255,0.28); }
.mz-dd.open .mz-dd-trigger { border-color: var(--gold); background: rgba(255,255,255,0.06); }
.mz-dd-trigger .ph { color: #6F7892; }
.mz-dd-caret { transition: transform .2s ease; color: var(--text-dim); flex-shrink: 0; }
.mz-dd.open .mz-dd-caret { transform: rotate(180deg); color: var(--gold); }
.mz-dd-menu {
  position: absolute; top: calc(100% + 6px); inset-inline-start: 0; inset-inline-end: 0;
  background: linear-gradient(180deg, #131E40 0%, #0D1530 100%);
  border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 6px; z-index: 20;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
  display: none; max-height: 280px; overflow: auto;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease;
}
.mz-dd.open .mz-dd-menu { display: block; opacity: 1; transform: translateY(0); }
.mz-dd-opt {
  display: flex; width: 100%; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; font-size: 14px; color: var(--text);
  font-family: inherit; text-align: start; transition: background .12s ease;
}
.mz-dd-opt:hover { background: rgba(212,162,76,0.1); color: var(--gold-2); }
.mz-dd-opt.selected { background: var(--gold-soft); color: var(--gold-2); }
.mz-dd-opt .flag { font-size: 18px; line-height: 1; }
.mz-dd.invalid .mz-dd-trigger { border-color: var(--rose); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.upload {
  border: 1.5px dashed var(--line-strong); border-radius: 12px;
  padding: 20px; background: rgba(255,255,255,0.02);
  transition: all .2s ease; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
}
.upload:hover { border-color: var(--gold); background: var(--gold-soft); }
.upload.has-file { border-style: solid; border-color: var(--emerald); background: rgba(46,157,119,0.08); }
.upload .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold-soft); border: 1px solid rgba(212,162,76,0.3);
  color: var(--gold); display: grid; place-items: center;
}
.upload .label-main { font-size: 14px; font-weight: 500; }
.upload .label-sub { font-size: 12px; color: var(--text-dim); }
.upload input[type="file"] { display: none; }

.submit-row {
  margin-top: 6px; display: flex; gap: 14px; align-items: center;
  flex-wrap: wrap; justify-content: space-between;
}
.submit-row small { color: var(--text-dim); font-size: 12px; }

/* ============== FOOTER ============== */
.footer { border-top: 1px solid var(--line); padding: 48px 0 36px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h6 {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); margin: 0 0 18px; font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--text-dim); }
.footer ul a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--text-dim);
}
.powered { display: flex; align-items: center; gap: 10px; }
.powered img { width: 22px; height: 22px; object-fit: contain; }

/* ============== TOAST ============== */
.toast {
  position: fixed; bottom: 24px; inset-inline-start: 24px; z-index: 100;
  padding: 14px 20px; border-radius: 12px;
  background: var(--ink-3); border: 1px solid var(--emerald);
  color: var(--text); font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.5);
  transform: translateY(100px); opacity: 0;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ============== REVEAL ============== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .scale-ring, .float-chip { animation: none !important; }
}
