/* ============ Prenup Portal design system — v2 "bubbly institutional" ============ */
:root {
  --ivory: #faf8f2;
  --paper: #ffffff;
  --ink: #17201b;
  --ink-soft: #46524b;
  --ink-faint: #7d877f;
  --green: #1d3a2f;
  --green-mid: #2c5445;
  --green-soft: #e3f0e8;
  --gold: #a8862f;
  --gold-soft: #f6eed6;
  --red: #9c3b2e;
  --red-soft: #f9e9e5;
  --blush: #fbe8e4;
  --sky: #e3edf7;
  --butter: #fdf3d9;
  --mint: #e0f2ea;
  --lav: #ece7f6;
  --line: #e7e3d7;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 2px 4px rgba(23,32,27,.04), 0 12px 32px rgba(23,32,27,.08);
  --shadow-pop: 0 4px 10px rgba(29,58,47,.10), 0 18px 44px rgba(29,58,47,.14);
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: var(--green-mid); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.serif { font-family: var(--serif); }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,242,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px; border-radius: 13px; background: var(--green);
  display: grid; place-items: center; color: #f3d689; font-family: var(--serif);
  font-size: 21px; font-weight: 700; box-shadow: 0 4px 10px rgba(29,58,47,.25);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1);
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.08); }
.brand-name { font-family: var(--serif); font-size: 20px; letter-spacing: .01em; }
.brand-name em { font-style: normal; color: var(--green-mid); }
.head-nav { display: flex; gap: 24px; align-items: center; }
.head-nav a { text-decoration: none; color: var(--ink-soft); font-size: 14.5px; font-weight: 500; }
.head-nav a:hover { color: var(--green); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  font-family: var(--sans); font-size: 15.5px; font-weight: 700;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease, background .15s;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(29,58,47,.28); }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 24px rgba(29,58,47,.32); }
.btn-gold { background: linear-gradient(135deg, #c29b3a, var(--gold)); color: #fff; box-shadow: 0 6px 16px rgba(168,134,47,.32); }
.btn-gold:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 24px rgba(168,134,47,.38); }
.btn-ghost { background: #fff; color: var(--green); border: 2px solid var(--green-soft); box-shadow: var(--shadow); }
.btn-ghost:hover { border-color: var(--green-mid); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.btn:active { transform: translateY(0) scale(.98); }

/* ---------- hero ---------- */
.hero { padding: 96px 0 72px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -40% -20% auto; height: 140%;
  background: radial-gradient(ellipse at 50% 0%, var(--green-soft), transparent 62%);
  z-index: -1;
}
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .8; z-index: -1; animation: float 7s ease-in-out infinite; }
.blob-1 { width: 90px; height: 90px; background: var(--butter); top: 18%; left: 8%; }
.blob-2 { width: 56px; height: 56px; background: var(--blush); top: 60%; left: 15%; animation-delay: 1.4s; }
.blob-3 { width: 110px; height: 110px; background: var(--sky); top: 24%; right: 7%; animation-delay: .7s; }
.blob-4 { width: 46px; height: 46px; background: var(--mint); top: 66%; right: 16%; animation-delay: 2.1s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: #8a6d1f; margin-bottom: 20px;
  background: var(--gold-soft); padding: 8px 18px; border-radius: 999px;
  border: 1.5px solid #eddfb4; box-shadow: 0 3px 8px rgba(168,134,47,.12);
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.14; font-weight: 500; max-width: 860px; margin: 0 auto 24px;
}
.hero h1 em {
  font-style: italic; color: var(--green-mid); position: relative; white-space: nowrap;
  background: linear-gradient(transparent 58%, var(--butter) 58%, var(--butter) 92%, transparent 92%);
  border-radius: 6px; padding: 0 4px;
}
.hero .sub { font-size: clamp(16px,2vw,19px); color: var(--ink-soft); max-width: 640px; margin: 0 auto 36px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note {
  margin-top: 22px; font-size: 13.5px; color: var(--ink-soft);
  display: inline-block; background: var(--mint); border-radius: 999px; padding: 8px 18px;
}

/* ---------- stats strip ---------- */
.strip { border-block: 1px solid var(--line); background: var(--paper); }
.strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; padding: 26px 24px; }
.stat {
  text-align: center; padding: 12px 22px; border-radius: 18px;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1);
}
.stat:hover { transform: translateY(-3px) scale(1.04); }
.stat:nth-child(1) { background: var(--mint); }
.stat:nth-child(2) { background: var(--butter); }
.stat:nth-child(3) { background: var(--sky); }
.stat:nth-child(4) { background: var(--blush); }
.stat:nth-child(5) { background: var(--lav); }
.stat b { display: block; font-family: var(--serif); font-size: 26px; color: var(--green); }
.stat span { font-size: 11.5px; color: var(--ink-soft); letter-spacing: .05em; text-transform: uppercase; font-weight: 600; }

/* ---------- sections ---------- */
.section { padding: 80px 0; }
.section.alt { background: var(--paper); border-block: 1px solid var(--line); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 { font-family: var(--serif); font-size: clamp(26px,3.4vw,40px); font-weight: 500; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 16.5px; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) { .grid3, .grid2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-pop); }
.card h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--ink-soft); }
.card .num {
  width: 52px; height: 52px; border-radius: 17px;
  display: grid; place-items: center; font-size: 24px; margin-bottom: 16px;
  box-shadow: inset 0 0 0 1.5px rgba(23,32,27,.05);
}
.card:nth-child(1) .num { background: var(--mint); }
.card:nth-child(2) .num { background: var(--butter); }
.card:nth-child(3) .num { background: var(--sky); }
.card:nth-child(4) .num { background: var(--blush); }
.card:nth-child(5) .num { background: var(--lav); }
.card:nth-child(6) .num { background: var(--green-soft); }

/* ---------- pricing ---------- */
.price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .price-cards { grid-template-columns: 1fr; } }
.price-card {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow); position: relative;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.price-card.featured { border: 2.5px solid var(--green); transform: scale(1.03); background: linear-gradient(180deg, #fdfefd, var(--paper)); }
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.badge-popular {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-mid), var(--green)); color: #fff; font-size: 12px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: 7px 18px; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(29,58,47,.3);
}
.price-card h3 { font-family: var(--serif); font-size: 21px; }
.price-card .tagline { color: var(--ink-faint); font-size: 13.5px; margin: 2px 0 18px; }
.price { font-family: var(--serif); font-size: 48px; color: var(--green); }
.price small { font-size: 14px; color: var(--ink-faint); font-family: var(--sans); }
.price-card ul { list-style: none; margin: 18px 0 28px; flex: 1; }
.price-card li { font-size: 14px; padding: 8px 0 8px 32px; position: relative; color: var(--ink-soft); }
.price-card li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  width: 21px; height: 21px; border-radius: 999px; background: var(--mint); color: var(--green-mid);
  display: grid; place-items: center; font-weight: 800; font-size: 12px;
}
.price-card li.no { color: var(--ink-faint); }
.price-card li.no::before { content: "–"; background: #f1efe8; color: var(--ink-faint); }

/* ---------- why fail ---------- */
.fail-list { max-width: 760px; margin: 0 auto; display: grid; gap: 16px; }
.fail-item {
  background: var(--paper); border: 1.5px solid #f0d9d3; border-radius: var(--radius);
  padding: 20px 24px 20px 62px; position: relative; box-shadow: var(--shadow);
  transition: transform .18s ease;
}
.fail-item:hover { transform: translateX(4px); }
.fail-item::before {
  content: "⚠️"; position: absolute; left: 18px; top: 20px; font-size: 17px;
  width: 32px; height: 32px; border-radius: 11px; background: var(--blush);
  display: grid; place-items: center;
}
.fail-item b { display: block; margin-bottom: 4px; font-size: 15.5px; }
.fail-item p { font-size: 14px; color: var(--ink-soft); }
.fail-item.good { border-color: var(--green-soft); }
.fail-item.good::before { content: "🎉"; background: var(--mint); }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 18px;
  margin-bottom: 14px; padding: 0 24px; box-shadow: var(--shadow); transition: border-color .15s;
}
.faq details[open] { border-color: var(--green-soft); }
.faq summary { cursor: pointer; font-weight: 700; font-size: 15.5px; padding: 19px 0; list-style: none; position: relative; padding-right: 40px; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 13px; font-size: 18px; color: var(--green-mid);
  width: 30px; height: 30px; border-radius: 999px; background: var(--green-soft);
  display: grid; place-items: center; font-weight: 700; transition: transform .2s;
}
.faq details[open] summary::after { content: "–"; transform: rotate(180deg); }
.faq details p { padding-bottom: 20px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- waitlist ---------- */
.waitlist-box {
  max-width: 640px; margin: 0 auto; position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--green) 0%, var(--green-mid) 100%); color: #fff;
  border-radius: var(--radius-lg); padding: 48px 40px; text-align: center;
  box-shadow: 0 20px 50px rgba(29,58,47,.3);
}
.waitlist-box::before, .waitlist-box::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.07);
}
.waitlist-box::before { width: 200px; height: 200px; top: -70px; right: -50px; }
.waitlist-box::after { width: 140px; height: 140px; bottom: -50px; left: -40px; }
.waitlist-box h2 { font-family: var(--serif); font-size: 29px; font-weight: 500; margin-bottom: 10px; position: relative; }
.waitlist-box p { color: #cfe0d6; font-size: 15px; margin-bottom: 26px; position: relative; }
.waitlist-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; position: relative; }
.waitlist-form input {
  flex: 1; border: 0; border-radius: 999px; padding: 14px 22px; font-size: 15px; font-family: var(--sans);
}
.waitlist-ok { margin-top: 16px; color: #f3d689; font-size: 15px; font-weight: 600; position: relative; }
@media (max-width: 560px){ .waitlist-form { flex-direction: column; } }

/* ---------- footer / disclaimer ---------- */
.site-foot { padding: 48px 0 64px; border-top: 1px solid var(--line); }
.disclaimer {
  background: var(--gold-soft); border: 1.5px solid #eaddb6; border-radius: 16px;
  padding: 18px 22px; font-size: 12.8px; color: #6b5a26; margin-bottom: 28px; line-height: 1.55;
}
.foot-meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--ink-faint); font-size: 13px; }

/* ============================================================
   APP (wizard)
   ============================================================ */
.app-shell { display: grid; grid-template-columns: 256px 1fr; min-height: calc(100vh - 68px); }
@media (max-width: 900px) { .app-shell { grid-template-columns: 1fr; } .app-side { display: none; } }
.app-side {
  background: var(--paper); border-right: 1px solid var(--line); padding: 28px 18px;
  position: sticky; top: 68px; height: calc(100vh - 68px); overflow-y: auto;
}
.step-nav { list-style: none; display: grid; gap: 5px; }
.step-nav li { border-radius: 13px; }
.step-nav a {
  display: flex; align-items: center; gap: 11px; padding: 11px 13px; text-decoration: none;
  color: var(--ink-soft); font-size: 14px; font-weight: 500; border-radius: 13px; transition: background .12s;
}
.step-nav a:hover { background: var(--ivory); }
.step-nav li.active a { background: var(--green-soft); color: var(--green); font-weight: 700; }
.step-dot {
  width: 26px; height: 26px; border-radius: 999px; border: 2px solid var(--line);
  display: grid; place-items: center; font-size: 11.5px; font-weight: 800; flex: none; background: #fff;
  transition: all .15s;
}
.step-nav li.done .step-dot { background: var(--green); border-color: var(--green); color: #fff; }
.step-nav li.active .step-dot { border-color: var(--green); color: var(--green); }
.side-progress { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-faint); }
.progress-bar { height: 8px; border-radius: 99px; background: var(--line); overflow: hidden; margin-top: 8px; }
.progress-bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--green-mid), var(--gold)); transition: width .4s ease; }

.app-main { padding: 42px 46px 100px; max-width: 900px; }
@media (max-width: 700px) { .app-main { padding: 24px 18px 80px; } }
.app-main h1 { font-family: var(--serif); font-size: 31px; font-weight: 500; margin-bottom: 6px; }
.app-main .lede { color: var(--ink-soft); margin-bottom: 30px; max-width: 640px; }

.panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; margin-bottom: 24px; box-shadow: var(--shadow);
}
.panel h2 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.panel .hint { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 16px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; }
.field input[type=text], .field input[type=date], .field input[type=email], .field input[type=number],
.field select, .field textarea {
  width: 100%; border: 2px solid var(--line); border-radius: 13px; padding: 11px 15px;
  font-size: 14.5px; font-family: var(--sans); background: #fff; color: var(--ink); transition: border-color .12s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--green-soft); border-color: var(--green-mid); }
.field .ctx { font-size: 12.5px; color: var(--ink-faint); margin-top: 5px; font-style: italic; }
.fields-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 640px) { .fields-2 { grid-template-columns: 1fr; } }

/* election cards */
.election { margin-bottom: 34px; }
.election-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.election-head .sec {
  font-size: 12px; font-weight: 800; color: #8a6d1f; letter-spacing: .08em;
  background: var(--gold-soft); border-radius: 999px; padding: 3px 11px;
}
.election-head h2 { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.guidance {
  background: var(--green-soft); border-radius: 15px; padding: 15px 19px; font-size: 13.5px;
  color: var(--green); margin: 10px 0 14px; line-height: 1.55;
}
.guidance b { display: block; margin-bottom: 2px; }
.trap {
  background: var(--red-soft); border: 1.5px solid #eccbc2; border-radius: 15px; padding: 13px 17px;
  font-size: 13px; color: var(--red); margin: 0 0 14px;
}
.opt-card {
  display: block; border: 2px solid var(--line); border-radius: 16px; padding: 17px 19px 17px 50px;
  margin-bottom: 11px; cursor: pointer; position: relative; background: #fff;
  transition: border-color .12s, transform .15s ease, box-shadow .15s ease;
}
.opt-card:hover { border-color: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow); }
.opt-card input { position: absolute; left: 17px; top: 20px; accent-color: var(--green); width: 18px; height: 18px; }
.opt-card.sel { border-color: var(--green); background: #f3f9f5; box-shadow: 0 4px 14px rgba(29,58,47,.1); }
.opt-card b { font-size: 14.5px; }
.opt-card .opt-id { font-size: 11.5px; color: var(--gold); font-weight: 800; letter-spacing: .05em; margin-right: 6px; }
.opt-card p { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.opt-card.undecided { border-style: dashed; }

/* fill-ins */
.fill-article { margin-bottom: 10px; }
.fill-article > summary {
  cursor: pointer; font-family: var(--serif); font-size: 17px; font-weight: 600; padding: 15px 20px;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 16px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow);
}
.fill-article > summary .count {
  font-family: var(--sans); font-size: 12px; color: var(--ink-faint); font-weight: 700;
  background: var(--ivory); border-radius: 999px; padding: 3px 11px;
}
.fill-article > summary .count.done { color: var(--green); background: var(--mint); }
.fill-article[open] > summary { border-radius: 16px 16px 0 0; }
.fill-body { border: 1.5px solid var(--line); border-top: 0; border-radius: 0 0 16px 16px; padding: 22px; background: #fff; }

/* schedules */
.sched-table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin-bottom: 10px; }
.sched-table th { background: var(--green-soft); color: var(--green); text-align: left; padding: 9px 11px; font-size: 12.5px; }
.sched-table th:first-child { border-radius: 10px 0 0 10px; }
.sched-table th:last-child { border-radius: 0 10px 10px 0; }
.sched-table td { border-bottom: 1px solid var(--line); padding: 4px; }
.sched-table td input { width: 100%; border: 1.5px solid transparent; background: transparent; padding: 8px 9px; font-size: 13.5px; border-radius: 9px; font-family: var(--sans); }
.sched-table td input:focus { outline: 0; border-color: var(--green-mid); background: #fff; }
.sched-table .rowdel { width: 30px; text-align: center; }
.rowdel button { border: 0; background: none; cursor: pointer; color: var(--ink-faint); font-size: 15px; }
.rowdel button:hover { color: var(--red); }
.tbl-scroll { overflow-x: auto; }

/* timeline */
.tl-item { display: flex; gap: 18px; padding: 15px 0; border-bottom: 1px dashed var(--line); }
.tl-date {
  flex: none; width: 128px; font-weight: 800; font-size: 12.5px; color: var(--green);
  background: var(--mint); border-radius: 12px; padding: 6px 10px; height: fit-content; text-align: center;
}
.tl-item.warn .tl-date { color: var(--red); background: var(--blush); }
.tl-body b { font-size: 14.5px; display: block; }
.tl-body p { font-size: 13px; color: var(--ink-soft); }
.clock-ok { color: var(--green); font-weight: 800; background: var(--mint); border-radius: 999px; padding: 3px 12px; }
.clock-bad { color: var(--red); font-weight: 800; background: var(--blush); border-radius: 999px; padding: 3px 12px; }

/* review */
.check-list { list-style: none; }
.check-list li { padding: 10px 0 10px 34px; position: relative; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 9px;
  width: 22px; height: 22px; border-radius: 999px; background: var(--mint); color: var(--green-mid);
  display: grid; place-items: center; font-weight: 800; font-size: 12px;
}
.check-list li.bad { color: var(--red); }
.check-list li.bad::before { content: "!"; background: var(--blush); color: var(--red); }

.gen-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* nav buttons */
.step-actions { display: flex; justify-content: space-between; margin-top: 36px; }

.draft-note {
  background: var(--gold-soft); border: 1.5px solid #eaddb6; border-radius: 15px; padding: 13px 17px;
  font-size: 13px; color: #6b5a26; margin-bottom: 20px;
}
.pill { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.pill-green { background: var(--green-soft); color: var(--green); }
.pill-red { background: var(--red-soft); color: var(--red); }
.pill-gold { background: var(--gold-soft); color: #8a6d1f; }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: 13px 24px; border-radius: 999px; font-size: 14px;
  opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 100; box-shadow: var(--shadow-pop);
}
.toast.show { opacity: 1; }
