:root {
  color-scheme: dark;
  --bg: #09090c;
  --bg-soft: #0f0f14;
  --panel: rgba(22, 22, 28, .88);
  --panel-solid: #16161c;
  --panel-2: #1c1c23;
  --line: #30252a;
  --line-hot: #683127;
  --text: #f5f5f7;
  --muted: #a6a6b1;
  --dim: #777783;
  --red: #ff3434;
  --orange: #ff7518;
  --amber: #ffb647;
  --green: #42d392;
  --blue: #5aa7ff;
  --danger: #ff5252;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 60px rgba(0, 0, 0, .32);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 52, 52, .09), transparent 28rem),
    radial-gradient(circle at 92% 34%, rgba(255, 117, 24, .07), transparent 32rem),
    var(--bg);
  color: var(--text);
  font: 400 1rem/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }
::selection { background: rgba(255, 91, 35, .35); color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.ambient::before {
  content: ""; position: absolute; inset: 0; opacity: .045;
  background-image: linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}
.ambient span { position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(100px); opacity: .07; }
.ambient span:first-child { background: var(--red); top: -220px; left: -100px; }
.ambient span:last-child { background: var(--orange); right: -180px; top: 42%; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; min-height: 72px; padding: 12px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(9, 9, 12, .82); backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; }
.brand > span { display: grid; font-weight: 900; letter-spacing: .08em; line-height: 1; }
.brand strong { color: #ff5a2f; }
.brand small { margin-top: 5px; color: var(--dim); font-size: .62rem; letter-spacing: .22em; font-weight: 700; }
.menu-toggle {
  width: 44px; height: 44px; padding: 11px; display: grid; align-content: center; gap: 5px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 13px; cursor: pointer;
}
.menu-toggle span:not(.sr-only) { height: 2px; border-radius: 2px; background: var(--text); transition: .25s ease; }
.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); }
.site-nav {
  position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); display: none;
  padding: 10px; background: rgba(20,20,26,.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
}
.site-nav.open { display: grid; animation: menu-in .18s ease-out; }
.site-nav a { padding: 12px 14px; border-radius: 11px; color: #c7c7d0; font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.site-nav a:hover, .site-nav a.active { background: rgba(255,87,38,.09); color: #fff; }

main { min-height: calc(100vh - 300px); }
.page-shell { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; padding: 38px 0 76px; }
.narrow { max-width: 760px; }
.route-loading { min-height: 58vh; display: grid; place-content: center; justify-items: center; color: var(--muted); }
.loader-mark {
  display: grid; place-items: center; width: 58px; height: 58px; border: 2px solid var(--orange); border-radius: 18px;
  color: var(--orange); font-weight: 1000; font-size: 1.5rem; animation: loader 1.4s ease-in-out infinite;
}
.maintenance-banner { padding: 11px 18px; text-align: center; background: #3a2110; border-bottom: 1px solid #784421; color: #ffd4ab; font-weight: 700; }

.hero {
  position: relative; width: min(var(--max), calc(100% - 36px)); margin: 0 auto;
  padding: 58px 0 46px; display: grid; gap: 34px; align-items: center;
}
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 14px; color: #ff9c6d; font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: linear-gradient(90deg, var(--red), var(--orange)); }
.hero h1, .page-heading h1 {
  margin: 0; max-width: 780px; font-size: clamp(2.85rem, 12vw, 6.4rem); line-height: .9;
  letter-spacing: -.075em; font-weight: 950; text-transform: uppercase;
}
.hero h1 span, .gradient-text { color: transparent; background: linear-gradient(105deg, #ff3131 10%, #ff6a24 52%, #ffc05c 100%); background-clip: text; }
.hero-copy > p:not(.eyebrow) { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: clamp(1rem, 2.7vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; color: #b8b8c1; font-size: .85rem; font-weight: 650; }
.trust-row span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(66,211,146,.08); }

.btn {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 18px;
  border: 1px solid transparent; border-radius: 13px; cursor: pointer; font-weight: 850; letter-spacing: .025em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible { outline: 3px solid rgba(255,128,67,.42); outline-offset: 2px; }
.btn-primary { color: #fff; background: linear-gradient(115deg, #df252c, #f15f24 65%, #f88429); box-shadow: 0 12px 28px rgba(218,51,34,.2); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(218,51,34,.3); }
.btn-secondary { background: #18181e; border-color: #38323a; color: #ededf1; }
.btn-secondary:hover { border-color: #6a3e35; background: #1d1c22; }
.btn-ghost { background: transparent; border-color: var(--line); color: #c7c7d0; }
.btn-danger { background: rgba(255,66,66,.09); border-color: rgba(255,66,66,.3); color: #ff9a9a; }
.btn-sm { min-height: 38px; padding: 8px 12px; border-radius: 10px; font-size: .83rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.purchase-console {
  position: relative; overflow: hidden; background: linear-gradient(145deg, rgba(31,29,34,.96), rgba(15,15,20,.95));
  border: 1px solid #3d292a; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 20px;
}
.purchase-console::after { content: ""; position: absolute; width: 190px; height: 2px; top: 0; right: 12%; background: linear-gradient(90deg, transparent, var(--orange), transparent); box-shadow: 0 0 22px var(--orange); }
.console-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.console-head span { color: #d0d0d8; font-size: .77rem; letter-spacing: .15em; font-weight: 850; }
.live-pill { padding: 5px 9px; border: 1px solid rgba(66,211,146,.2); border-radius: 99px; background: rgba(66,211,146,.07); color: #83e5b4 !important; letter-spacing: .06em !important; }
.process-list { display: grid; gap: 0; margin: 10px 0 0; }
.process-step { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 12px; min-height: 52px; position: relative; }
.process-step:not(:last-child)::before { content: ""; position: absolute; left: 17px; top: 35px; bottom: -17px; width: 1px; background: #423130; }
.step-number { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; background: #221b1d; border: 1px solid #54312d; color: #ff8752; font-weight: 900; font-size: .75rem; z-index: 1; }
.process-step b { font-size: .92rem; }
.process-step small { color: var(--dim); font-size: .75rem; }

.section { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; padding: 58px 0; }
.section-head { display: flex; flex-direction: column; gap: 8px; margin-bottom: 26px; }
.section-head h2 { margin: 0; font-size: clamp(1.75rem, 7vw, 3.4rem); line-height: 1.05; letter-spacing: -.045em; text-transform: uppercase; }
.section-head p { margin: 0; color: var(--muted); max-width: 620px; }
.package-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.package-card {
  position: relative; min-width: 0; display: flex; flex-direction: column; padding: 17px;
  border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(155deg, rgba(27,27,34,.92), rgba(16,16,21,.92));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.package-card:hover { transform: translateY(-4px); border-color: #754137; background: linear-gradient(155deg, #211d21, #121217); }
.package-card.featured { border-color: #8f4835; background: linear-gradient(155deg, rgba(49,28,28,.96), rgba(18,17,22,.95)); }
.package-badge { position: absolute; top: 12px; right: 12px; padding: 4px 7px; border-radius: 7px; background: #ff6331; color: #fff; font-size: .6rem; font-weight: 900; letter-spacing: .08em; }
.package-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: #251c1e; border: 1px solid #4c302e; color: #ff7844; font-weight: 950; }
.package-card h3 { margin: 16px 0 2px; font-size: 1rem; line-height: 1.2; }
.package-duration { color: var(--dim); font-size: .77rem; }
.package-price { margin: 14px 0 16px; font-size: clamp(1.15rem, 5vw, 1.65rem); font-weight: 950; letter-spacing: -.04em; }
.package-card .btn { margin-top: auto; min-height: 42px; padding-inline: 8px; font-size: .75rem; }

.feature-strip { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--line); }
.feature { padding: 22px; background: #121217; }
.feature b { display: block; margin: 10px 0 5px; }
.feature p { margin: 0; color: var(--muted); font-size: .9rem; }
.feature-symbol { color: #ff7b45; font-size: 1.35rem; font-weight: 950; }

.page-heading { padding: 16px 0 28px; }
.page-heading h1 { font-size: clamp(2.3rem, 10vw, 5.2rem); }
.page-heading > p:last-child { color: var(--muted); max-width: 650px; margin: 18px 0 0; }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.panel-pad { padding: clamp(18px, 5vw, 30px); }
.checkout-grid { display: grid; gap: 18px; }
.order-summary { align-self: start; }
.summary-package { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.summary-package .package-icon { flex: 0 0 auto; }
.summary-package h2 { margin: 0; font-size: 1.15rem; }
.summary-package p { margin: 2px 0 0; color: var(--muted); font-size: .86rem; }
.summary-lines { display: grid; gap: 12px; padding: 18px 0; }
.summary-line { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--muted); }
.summary-line b { color: var(--text); text-align: right; }
.summary-total { padding-top: 16px; border-top: 1px solid var(--line); font-size: 1.08rem; }
.summary-total b { color: #ff8a4f; font-size: 1.4rem; }

.form { display: grid; gap: 17px; }
.form-group { display: grid; gap: 8px; }
.form-group label { color: #dadade; font-size: .86rem; font-weight: 750; }
.form-group small, .form-note { color: var(--dim); font-size: .77rem; }
.input-wrap { position: relative; }
input, select, textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #35343d; border-radius: 13px;
  background: #0f0f14; color: var(--text); outline: none; transition: border-color .18s ease, box-shadow .18s ease;
}
textarea { min-height: 110px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #62626d; }
input:hover, select:hover, textarea:hover { border-color: #49454d; }
input:focus, select:focus, textarea:focus { border-color: #a84c37; box-shadow: 0 0 0 4px rgba(255,93,41,.08); }
.input-action { position: absolute; right: 7px; top: 7px; bottom: 7px; min-width: 42px; border: 0; border-radius: 9px; background: #222229; color: #bbb; cursor: pointer; }
.form-error { display: none; padding: 12px 14px; border: 1px solid rgba(255,72,72,.25); border-radius: 12px; background: rgba(255,72,72,.07); color: #ff9e9e; font-size: .87rem; }
.form-error.show { display: block; }
.secure-note { display: flex; gap: 10px; color: #9696a1; font-size: .78rem; }
.secure-note span { color: var(--green); }

.payment-layout { display: grid; gap: 18px; }
.payment-card { text-align: center; }
.payment-card h2 { margin: 6px 0; font-size: 1.45rem; }
.payment-card > p { margin: 0; color: var(--muted); }
.status-chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid #5f4424; border-radius: 99px; background: #2a2015; color: #ffc371; font-size: .75rem; font-weight: 850; letter-spacing: .05em; }
.status-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status-chip.success { color: #76dfa8; border-color: #24553e; background: #132a21; }
.status-chip.failed { color: #ff9292; border-color: #623030; background: #2c1719; }
.qr-frame { width: min(100%, 340px); margin: 22px auto 16px; padding: 13px; border-radius: 22px; background: #fff; }
.qr-frame img { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 10px; }
.qr-placeholder { display: grid; place-items: center; width: min(100%, 340px); aspect-ratio: 1; margin: 22px auto 16px; padding: 20px; border: 1px dashed #5b5358; border-radius: 22px; color: var(--muted); }
.countdown { margin: 8px 0 20px; font-variant-numeric: tabular-nums; font-size: 1.3rem; font-weight: 900; color: #ffbc76; }
.payment-details { display: grid; gap: 1px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); }
.detail-row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 16px; background: #141419; color: var(--muted); font-size: .88rem; }
.detail-row b { color: var(--text); text-align: right; word-break: break-word; }
.payment-actions { display: grid; gap: 10px; margin-top: 18px; }
.waiting-orbit { position: relative; width: 80px; height: 80px; margin: 14px auto 20px; border: 1px solid #5b3430; border-radius: 50%; }
.waiting-orbit::before { content: ""; position: absolute; inset: 10px; border: 1px dashed #7c4435; border-radius: 50%; animation: spin 7s linear infinite; }
.waiting-orbit::after { content: ""; position: absolute; width: 9px; height: 9px; top: -5px; left: 35px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 18px var(--orange); animation: spin-orbit 2.2s linear infinite; transform-origin: 5px 45px; }

.success-hero { text-align: center; padding: 30px 0 10px; }
.success-mark { width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 24px; background: rgba(66,211,146,.1); border: 1px solid rgba(66,211,146,.35); color: var(--green); font-size: 2rem; font-weight: 950; animation: success-in .45s ease-out; }
.success-hero h1 { margin: 0; font-size: clamp(2rem, 8vw, 4rem); line-height: 1; letter-spacing: -.05em; text-transform: uppercase; }
.success-hero p { color: var(--muted); }
.credential-box { margin-top: 18px; padding: 18px; border: 1px dashed #70503d; border-radius: var(--radius); background: #171515; text-align: left; }
.credential-box pre { overflow-x: auto; margin: 10px 0 0; color: #ffd1b9; font: 700 1rem/1.6 ui-monospace, SFMono-Regular, Menlo, monospace; }
.notice { padding: 14px 16px; border-radius: 13px; background: #17171d; border: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
.notice.info { background: rgba(90,167,255,.06); border-color: rgba(90,167,255,.24); color: #b8d8ff; }
.notice.warn { background: rgba(255,182,71,.07); border-color: rgba(255,182,71,.25); color: #ffd596; }
.notice.error { background: rgba(255,82,82,.07); border-color: rgba(255,82,82,.25); color: #ffaaaa; }

.help-grid, .tutorial-grid { display: grid; gap: 14px; }
.help-card, .tutorial-step { padding: 20px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.help-card h2, .tutorial-step h2 { margin: 0 0 8px; font-size: 1.1rem; }
.help-card p, .tutorial-step p { margin: 0 0 16px; color: var(--muted); }
.tutorial-step { display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.tutorial-number { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: #281b1c; border: 1px solid #57302d; color: #ff8050; font-weight: 950; }
.tutorial-step p { margin: 5px 0 0; }
.info-center-safety { margin-bottom: 18px; }
.info-center-safety b { color: #ffe2b0; }
.info-center-grid { display: grid; gap: 14px; }
.info-card {
  display: grid; grid-template-columns: 50px minmax(0, 1fr); gap: 15px; padding: 20px;
  background: linear-gradient(145deg, rgba(25,25,31,.96), rgba(16,16,21,.96));
  border: 1px solid var(--line); border-radius: var(--radius);
}
.info-card h2 { margin: 0 0 8px; font-size: 1.15rem; }
.info-card p:not(.info-kicker) { margin: 0 0 16px; color: var(--muted); }
.info-icon {
  width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px;
  background: #281b1c; border: 1px solid #57302d; color: #ff8c5d; font-weight: 950; font-size: .82rem;
}
.info-kicker { margin: 0 0 4px; color: #ff9c6d; font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.info-steps { display: grid; gap: 8px; margin: 12px 0 0; padding-left: 21px; color: var(--muted); }
.info-steps li::marker { color: #ff8050; font-weight: 900; }
.info-purchase-heading { margin-top: 42px; }
.community-list { display: grid; gap: 10px; }
.community-link { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: #121217; }
.community-link:hover { border-color: #604037; }
.community-link span { color: #ff8959; }

.empty-state { padding: 40px 20px; text-align: center; color: var(--muted); }
.empty-state b { display: block; color: var(--text); font-size: 1.2rem; }
.empty-state .btn { margin-top: 18px; }
.skeleton { min-height: 140px; background: linear-gradient(90deg, #131319 25%, #1b1b21 50%, #131319 75%); background-size: 200% 100%; border-radius: var(--radius); animation: shimmer 1.4s infinite; }

.site-footer { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; padding: 32px 0 40px; border-top: 1px solid var(--line); color: var(--dim); }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand div { display: grid; }
.footer-brand b { color: #efeff2; letter-spacing: .05em; }
.footer-brand span { font-size: .77rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 22px 0; }
.footer-links a { font-size: .83rem; color: #b0b0ba; }
.footer-links a:hover { color: #ff8752; }
.site-footer > p { margin: 0; font-size: .76rem; }

.toast-region { position: fixed; z-index: 100; left: 14px; right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); display: grid; gap: 8px; pointer-events: none; }
.toast { width: min(100%, 430px); margin-left: auto; padding: 13px 15px; border: 1px solid #4c3a38; border-radius: 13px; background: rgba(27,26,31,.97); box-shadow: var(--shadow); color: #f3f3f5; animation: toast-in .25s ease-out; pointer-events: auto; }
.toast.error { border-color: #6a3030; color: #ffb0b0; }
.toast.success { border-color: #275a42; color: #9ce8bf; }

@media (min-width: 640px) {
  .package-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
  .package-card { padding: 20px; }
  .feature-strip { grid-template-columns: repeat(3, 1fr); }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .info-center-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-card-wide { grid-column: 1 / -1; }
  .payment-actions { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 820px) {
  .site-header { min-height: 78px; }
  .menu-toggle { display: none; }
  .site-nav { position: static; display: flex; padding: 0; background: none; border: 0; border-radius: 0; box-shadow: none; }
  .site-nav a { padding: 10px 12px; font-size: .76rem; }
  .hero { min-height: 650px; grid-template-columns: minmax(0,1.2fr) minmax(340px,.8fr); padding: 74px 0 70px; }
  .package-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .checkout-grid { grid-template-columns: minmax(0,1fr) 350px; align-items: start; }
  .order-summary { position: sticky; top: 100px; }
  .payment-layout { grid-template-columns: minmax(0,1fr) 360px; align-items: start; }
  .payment-layout .order-summary { position: sticky; top: 100px; }
  .tutorial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { float: left; }
  .footer-links, .site-footer > p { margin-left: 290px; }
}
@media (min-width: 1100px) {
  .site-nav a { padding-inline: 15px; }
  .package-card h3 { font-size: 1.08rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
@keyframes menu-in { from { opacity: 0; transform: translateY(-8px); } }
@keyframes loader { 50% { transform: rotate(45deg); border-radius: 50%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-orbit { to { transform: rotate(360deg); } }
@keyframes success-in { from { opacity: 0; transform: scale(.7) rotate(-12deg); } }
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes toast-in { from { opacity: 0; transform: translateY(12px); } }
