/* ============================================================
   본 에니어그램 — Premium Design System v2
   Inspiration: Toss / Apple / Linear / 한국 프리미엄 핀테크
   ============================================================ */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.css');

:root {
  --bg:        #FAFAFC;
  --surface:   #FFFFFF;
  --surface-2: #F4F4F7;
  --surface-3: #ECECF2;

  --ink:        #0A0A14;
  --ink-2:      #2C2C3A;
  --ink-soft:   #6B6B7B;
  --ink-faint:  #A1A1B0;
  --line:       #EAEAF0;
  --line-soft:  #F0F0F4;

  --brand:      #4F46E5;
  --brand-2:    #6366F1;
  --brand-deep: #1E1B4B;
  --accent:     #F59E0B;
  --accent-2:   #FBBF24;
  --coral:      #FB7185;
  --mint:       #10B981;

  --good:       #10B981;
  --warn:       #F59E0B;
  --danger:     #EF4444;

  --grad-hero:  radial-gradient(ellipse 80% 60% at 20% 0%, rgba(99,102,241,.35), transparent 60%),
                radial-gradient(ellipse 60% 80% at 100% 100%, rgba(251,113,133,.25), transparent 60%),
                linear-gradient(160deg, #1E1B4B 0%, #312E81 50%, #4F46E5 100%);
  --grad-brand: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #EC4899 100%);
  --grad-gold:  linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);

  --sh-1: 0 1px 2px rgba(15,15,30,.04), 0 1px 3px rgba(15,15,30,.05);
  --sh-2: 0 4px 12px rgba(15,15,30,.06), 0 2px 4px rgba(15,15,30,.04);
  --sh-3: 0 10px 30px rgba(15,15,30,.08), 0 4px 10px rgba(15,15,30,.04);
  --sh-4: 0 24px 60px rgba(15,15,30,.12), 0 8px 20px rgba(15,15,30,.06);
  --sh-glow: 0 20px 60px rgba(79,70,229,.35);

  --r-xs: 8px;
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --fs-display: clamp(40px, 6.4vw, 72px);
  --fs-h1: clamp(30px, 4vw, 44px);
  --fs-h2: clamp(24px, 3vw, 32px);
  --fs-h3: 20px;
  --fs-body: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
               "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  font-feature-settings: "ss06", "ss07", "tnum";
  color: var(--ink);
  background: var(--bg);
  font-size: var(--fs-body);
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--brand); color: #fff; }
a { color: var(--brand); text-decoration: none; transition: color .15s; }
a:hover { color: var(--brand-2); }
img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: -0.025em; font-weight: 700; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0; }

.container        { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px;  margin: 0 auto; padding: 0 24px; }

/* ============ Header ============ */
.header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 14px 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--ink); font-size: 17px;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--ink); text-decoration: none; }
.logo {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--grad-brand);
  color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 15px;
  box-shadow: 0 4px 12px rgba(79,70,229,.35);
}
.nav-links { display: flex; gap: 4px; align-items: center; margin-left: 8px; }
.nav-links a {
  color: var(--ink-soft); padding: 8px 14px;
  font-weight: 500; font-size: 15px;
  border-radius: 10px; transition: all .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); text-decoration: none; }
.nav-spacer { flex: 1; }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.nav-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #78350F; font-weight: 700; font-size: 13px;
  border: 1px solid rgba(245,158,11,.2);
}
.nav-pill:hover { color: #78350F; text-decoration: none; transform: translateY(-1px); }

@media (max-width: 880px) { .nav-links { display: none; } }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 22px; border-radius: 12px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em; cursor: pointer; border: none;
  transition: transform .15s, box-shadow .2s, background .2s, color .15s;
  white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 10px; }

.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 4px 14px rgba(10,10,20,.18);
}
.btn-primary:hover { background: #1F1F2E; color: #fff; box-shadow: 0 8px 22px rgba(10,10,20,.25); }

.btn-brand {
  background: var(--grad-brand); color: #fff;
  box-shadow: var(--sh-glow);
}
.btn-brand:hover { color: #fff; box-shadow: 0 24px 70px rgba(79,70,229,.45); }

.btn-soft  { background: var(--surface-2); color: var(--ink); }
.btn-soft:hover { background: var(--surface-3); color: var(--ink); }

.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--surface-2); color: var(--ink); }

.btn-light {
  background: rgba(255,255,255,.14); color: #fff;
  border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(8px);
}
.btn-light:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ============ Hero ============ */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-hero);
  color: #fff;
  padding: 96px 0 120px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(245,158,11,.12), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 920px) {
  .hero { padding: 72px 0 100px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #FBBF24; font-weight: 600; font-size: 13px;
  backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #FBBF24; box-shadow: 0 0 12px #FBBF24;
}
.hero h1 {
  font-size: var(--fs-display); font-weight: 800;
  margin: 22px 0 24px; line-height: 1.08; letter-spacing: -0.04em;
  color: #fff;
}
.gradient {
  background: linear-gradient(120deg, #FBBF24 0%, #F59E0B 30%, #FB7185 70%, #C084FC 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead {
  font-size: 19px; color: rgba(255,255,255,.78);
  max-width: 520px; line-height: 1.65; font-weight: 400;
}
.hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat { text-align: left; padding-right: 16px; }
.hero-stat b {
  display: block; font-size: 32px; font-weight: 800; color: #fff;
  letter-spacing: -0.03em; font-feature-settings: "tnum";
}
.hero-stat span { color: rgba(255,255,255,.6); font-size: 13px; font-weight: 500; }

/* ============ Orbit visual ============ */
.orbit {
  position: relative; width: 100%; aspect-ratio: 1;
  max-width: 480px; margin: 0 auto;
}
.orbit-ring {
  position: absolute; inset: 8%; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.18);
  animation: orbit-spin 60s linear infinite;
}
.orbit-ring-2 {
  position: absolute; inset: 22%; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  animation: orbit-spin 90s linear infinite reverse;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.orbit-center {
  position: absolute; left: 50%; top: 50%;
  width: 130px; height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.22);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 17px;
  text-align: center; line-height: 1.3;
  box-shadow: 0 20px 60px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.2);
}
.orbit-node {
  position: absolute; width: 56px; height: 56px;
  border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 18px;
  border: 3px solid rgba(255,255,255,.85);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  text-decoration: none;
  transition: transform .25s cubic-bezier(.4,.0,.2,1), box-shadow .2s;
  z-index: 3;
}
.orbit-node:hover {
  transform: scale(1.18); text-decoration: none; color: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

/* ============ Sections ============ */
.section { padding: 88px 0; }
.section-title { text-align: center; margin-bottom: 56px; }
.section-title .eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: var(--brand); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 12px;
}
.section-title h2 { font-size: var(--fs-h1); margin-bottom: 14px; }
.section-title p  { color: var(--ink-soft); font-size: 17px; max-width: 620px; margin: 0 auto; }

/* ============ Tabs ============ */
.tabs-wrap { padding: 24px 0 0; }
.tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  background: var(--surface);
  padding: 8px; border-radius: 18px;
  box-shadow: var(--sh-2);
  border: 1px solid var(--line-soft);
  margin-bottom: 40px;
  overflow-x: auto;
}
.tab {
  padding: 12px 22px; border-radius: 12px;
  font-weight: 600; font-size: 15px; color: var(--ink-soft);
  cursor: pointer; transition: all .2s;
  white-space: nowrap; flex: 0 0 auto;
}
.tab:hover { color: var(--ink); }
.tab.active {
  background: var(--ink); color: #fff;
  box-shadow: 0 4px 14px rgba(10,10,20,.2);
}
.tab-panel { display: none; animation: fade .3s ease; }
.tab-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ============ Cards ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-1);
  transition: transform .2s, box-shadow .25s;
}
.card:hover { box-shadow: var(--sh-3); }
.card h3 { margin-bottom: 8px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Type cards (9 enneagram types) */
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .type-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .type-grid { grid-template-columns: 1fr; } }
.type-card {
  position: relative; overflow: hidden;
  background: var(--surface); border-radius: var(--r-lg);
  padding: 28px 24px; text-decoration: none;
  border: 1px solid var(--line-soft);
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s, border-color .2s;
  display: flex; flex-direction: column; gap: 8px;
  color: var(--ink);
}
.type-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--c, var(--brand));
  transition: width .25s;
}
.type-card:hover {
  transform: translateY(-6px); box-shadow: var(--sh-3);
  text-decoration: none; color: var(--ink);
}
.type-card:hover::before { width: 8px; }
.type-card .num {
  font-size: 13px; font-weight: 700; color: var(--c, var(--brand));
  letter-spacing: 0.08em;
}
.type-card .name { font-size: 22px; font-weight: 800; letter-spacing: -0.025em; }
.type-card .nick { color: var(--ink-soft); font-size: 14px; margin-top: 2px; }
.type-card .desc { color: var(--ink-soft); font-size: 14px; margin-top: 10px; line-height: 1.6; }

/* Center cards */
.center-card {
  padding: 36px 28px; border-radius: var(--r-lg);
  color: #fff; position: relative; overflow: hidden;
}
.center-card h3 { font-size: 26px; margin-bottom: 6px; color: #fff; }
.center-card .nums { font-size: 13px; opacity: .85; font-weight: 600; letter-spacing: 0.05em; }
.center-card p { margin-top: 14px; opacity: .92; font-size: 14px; line-height: 1.7; }
.center-instinct { background: linear-gradient(135deg, #DC2626 0%, #F97316 100%); }
.center-feeling  { background: linear-gradient(135deg, #DB2777 0%, #F43F5E 100%); }
.center-thinking { background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%); }

/* Service feature card */
.feature {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: all .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.feature .ico {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center; font-size: 22px;
  margin-bottom: 18px; box-shadow: 0 8px 20px rgba(79,70,229,.25);
}
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p  { color: var(--ink-soft); font-size: 14px; line-height: 1.65; }

/* FAQ */
.faq { background: var(--surface); border-radius: var(--r); border: 1px solid var(--line-soft); margin-bottom: 12px; overflow: hidden; }
.faq summary {
  padding: 22px 26px; cursor: pointer; font-weight: 600;
  list-style: none; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; color: var(--ink-soft); font-weight: 400; transition: transform .2s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq[open] summary { border-bottom: 1px solid var(--line-soft); }
.faq .faq-body { padding: 20px 26px 24px; color: var(--ink-soft); line-height: 1.7; }

/* CTA banner */
.cta-banner {
  background: var(--grad-hero);
  color: #fff; border-radius: var(--r-xl);
  padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
  margin: 64px auto;
}
.cta-banner::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(251,191,36,.18), transparent 60%);
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { font-size: var(--fs-h1); color: #fff; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.78); margin-bottom: 28px; font-size: 17px; }

/* ============ Result hero ============ */
.result-hero {
  background: var(--grad-hero); color: #fff;
  border-radius: var(--r-xl); padding: 56px 40px;
  margin: 32px 0 28px; position: relative; overflow: hidden;
}
.result-hero::after {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,.25), transparent 70%);
}
.result-hero h1 { color: #fff; font-size: 34px; }
.result-hero p  { color: rgba(255,255,255,.8); margin-top: 8px; }
.result-hero .pill { background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(10px); }

/* ============ Forms / Tables ============ */
.form { background: var(--surface); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh-2); border: 1px solid var(--line-soft); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--ink-2); }
.field input, .field select, .field textarea,
input[type="text"], input[type="email"], input[type="password"],
input[type="number"], input[type="datetime-local"], textarea, select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface); color: var(--ink);
  font-family: inherit; font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus,
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(79,70,229,.12);
}
.note { color: var(--ink-soft); font-size: 13px; }
.divider { text-align: center; color: var(--ink-faint); font-size: 13px; margin: 18px 0; position: relative; }
.divider::before, .divider::after {
  content: ""; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--line);
}
.divider::before { left: 0; }
.divider::after  { right: 0; }

.sns-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin: 14px 0; }
.sns {
  padding: 12px; border-radius: 12px; border: 1px solid var(--line);
  font-weight: 600; font-size: 14px; cursor: pointer; transition: all .15s;
  background: var(--surface);
}
.sns:hover { transform: translateY(-1px); box-shadow: var(--sh-2); }
.sns.google { color: #4285F4; }
.sns.kakao  { background: #FEE500; border-color: #FEE500; color: #000; }
.sns.naver  { background: #03C75A; border-color: #03C75A; color: #fff; }

.table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-1); border: 1px solid var(--line-soft); }
.table th, .table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.table th { background: var(--surface-2); font-weight: 600; color: var(--ink-soft); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--surface-2); }

.pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--surface-2); color: var(--ink-2);
  font-size: 12px; font-weight: 600;
}
.pill.good { background: rgba(16,185,129,.12); color: var(--good); }
.pill.bad  { background: rgba(239,68,68,.12);  color: var(--danger); }
.pill.warn { background: rgba(245,158,11,.12); color: var(--warn); }

/* ============ Diagnosis ============ */
.progress-bar { width: 100%; height: 6px; background: var(--surface-3); border-radius: 999px; margin: 24px 0; overflow: hidden; position: sticky; top: 70px; z-index: 10; }
.progress-bar > div { height: 100%; background: var(--grad-brand); border-radius: 999px; transition: width .25s ease; width: 0; }

.q-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 28px; margin-bottom: 16px; border: 1px solid var(--line-soft);
  box-shadow: var(--sh-1);
}
.q-num { color: var(--brand); font-weight: 700; font-size: 13px; letter-spacing: 0.05em; margin-bottom: 14px; display: block; }
.q-statement {
  display: block; padding: 18px 20px; margin-top: 10px;
  border: 1.5px solid var(--line); border-radius: 14px;
  cursor: pointer; transition: all .15s; line-height: 1.55; font-size: 15px;
}
.q-statement:hover { border-color: var(--brand); background: rgba(79,70,229,.03); }
.q-statement.selected {
  border-color: var(--brand); background: rgba(79,70,229,.06);
  box-shadow: 0 0 0 3px rgba(79,70,229,.10);
}

/* ============ Report (markdown) ============ */
.report {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 40px 44px; box-shadow: var(--sh-2); border: 1px solid var(--line-soft);
  line-height: 1.8;
}
.report h1, .report h2, .report h3 { margin: 28px 0 14px; letter-spacing: -0.02em; }
.report h1 { font-size: 26px; padding-bottom: 12px; border-bottom: 2px solid var(--line); }
.report h2 { font-size: 21px; color: var(--brand-deep); }
.report h3 { font-size: 17px; }
.report p, .report li { color: var(--ink-2); }
.report ul, .report ol { padding-left: 22px; }
.report blockquote { border-left: 4px solid var(--brand); background: var(--surface-2); padding: 14px 20px; border-radius: 8px; margin: 16px 0; color: var(--ink-2); }
.report code { background: var(--surface-2); padding: 2px 6px; border-radius: 6px; font-size: .92em; }

/* ============ Footer ============ */
.footer {
  margin-top: 96px;
  background: var(--ink); color: rgba(255,255,255,.6);
  padding: 48px 24px; text-align: center; font-size: 14px;
}
.footer .brand { color: #fff; }

/* ============ Toast ============ */
.toast {
  position: fixed; left: 50%; bottom: 32px; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  padding: 14px 22px; border-radius: 14px;
  box-shadow: var(--sh-4); z-index: 999;
  font-size: 14px; font-weight: 500;
  opacity: 0; transition: opacity .25s, transform .25s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-4px); }
