/* checkout.css — In-Thyme checkout flow. Mobile-first at 390px, one column.
   Palette: navy #1d2d3d · steel #416180 · ink #2c455d · ground #eef3f8 · ice #d6ebff · light ice #b5d9fd. */
*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body { margin: 0; min-height: 100svh; max-width: 100%; overflow-x: clip; color: #1d2d3d; background: #eef3f8; font-family: "Barlow", system-ui, sans-serif; font-size: 15px; line-height: 1.5; text-wrap: pretty; -webkit-font-smoothing: antialiased; transition: background .4s ease; }
body.dark { background: #1d2d3d; }
a { color: #416180; text-decoration: none; } a:hover { color: #1d2d3d; }
h1, h2, h3, p { margin: 0; font-weight: 400; }
button, input, select { font: inherit; }
input::placeholder { color: #8fa9c2; }
input[type=checkbox] { accent-color: #1d2d3d; }
.serif { font-family: "Cormorant Garamond", Georgia, serif; }
.tnum { font-variant-numeric: tabular-nums; }
.noscript { padding: 24px; text-align: center; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { * { animation-duration: .01s !important; transition-duration: .01s !important; } }

/* ── screen shell ──────────────────────────────────────────── */
.screen { position: relative; width: 100%; max-width: 480px; margin: 0 auto; min-height: 100svh; display: flex; flex-direction: column; color: #1d2d3d; background: #eef3f8; animation: rise .35s ease both; }
.screen.dark { background: #1d2d3d; color: #f2f2f3; }
.screen.dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 60% at 50% 0%, rgba(89,128,166,.55), rgba(29,45,61,0) 70%); pointer-events: none; }
.screen > * { position: relative; }
@media (min-width: 760px) {
  body { background: #dfe7ef; }
  body.dark { background: #14202c; }
  .screen { margin: 40px auto 64px; min-height: 844px; border-radius: 32px; overflow: clip; box-shadow: 0 40px 80px -40px rgba(29,45,61,.5), 0 0 0 1px rgba(29,45,61,.08); }
}

.hd { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; padding: 14px 12px 0; }
.hd .wm { text-align: center; font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; letter-spacing: .04em; }
.ic { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: inherit; background: transparent; border: 0; cursor: pointer; padding: 0; }
.ic:hover { background: rgba(29,45,61,.06); color: inherit; }
.dark .ic:hover { background: rgba(255,255,255,.1); }
.ic svg { display: block; }
.hd .lock { display: inline-flex; align-items: center; justify-content: center; color: #416180; }

.pad { padding: 22px 20px 0; }
.h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 40px; line-height: 1; letter-spacing: -.02em; }
.h1 em { font-style: italic; color: #416180; }
.dark .h1 em { color: #d6ebff; }
.kicker { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #416180; }
.dark .kicker { color: #b5d9fd; }
.meta { display: flex; justify-content: space-between; gap: 12px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #416180; margin-top: 8px; }
.lead { font-size: 15px; line-height: 23px; color: #2c455d; margin-top: 12px; max-width: 32ch; }
.dark .lead { color: rgba(242,242,243,.88); }
.muted { font-size: 12px; color: #416180; }
.dark .muted { color: #d6ebff; }
.grow { flex: 1; }
.label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #416180; }
.err { margin: 14px 20px 0; padding: 12px 16px; border-radius: 14px; background: rgba(255,255,255,.75); border: 1px solid #1d2d3d; font-size: 13px; line-height: 19px; color: #1d2d3d; animation: rise .35s ease both; }
.err:empty { display: none; }

/* ── glass panels ──────────────────────────────────────────── */
.glass { border-radius: 16px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.95); box-shadow: inset 0 1px 0 #fff, 0 18px 36px -20px rgba(29,45,61,.35); }
.glass-d { border-radius: 16px; background: rgba(29,45,61,.5); border: 1px solid rgba(255,255,255,.38); box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 30px 60px -26px rgba(0,0,0,.5); backdrop-filter: blur(48px) saturate(1.5); -webkit-backdrop-filter: blur(48px) saturate(1.5); }
.outline { border-radius: 14px; border: 1px solid rgba(29,45,61,.14); }

/* ── buttons ───────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; width: 100%; min-height: 54px; padding: 0 18px; border-radius: 999px; border: 1px solid #1d2d3d; background: #1d2d3d; color: #f2f2f3; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: background .3s, opacity .3s, transform .3s; text-decoration: none; }
.btn:hover { background: #2c455d; color: #f2f2f3; }
.btn:active { background: #416180; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn.light { background: #f2f2f3; border-color: #f2f2f3; color: #1d2d3d; }
.btn.light:hover { background: #fff; color: #1d2d3d; }
.btn.ghost { background: transparent; border-color: rgba(29,45,61,.25); color: #1d2d3d; }
.btn.ghost:hover { background: rgba(255,255,255,.7); }
.dark .btn.ghost { border-color: rgba(255,255,255,.5); color: #f2f2f3; font-size: 14px; letter-spacing: 0; text-transform: none; }
.dark .btn.ghost:hover { background: rgba(255,255,255,.12); }
.btn.soft { background: rgba(255,255,255,.6); border-color: rgba(29,45,61,.25); color: #1d2d3d; font-size: 14px; letter-spacing: 0; text-transform: none; min-height: 50px; }
.btn.soft:hover { background: #fff; }
.btn.apple { background: #000; border-color: #000; color: #fff; font-size: 17px; letter-spacing: 0; text-transform: none; min-height: 52px; gap: 4px; }
.btn.apple:hover { background: #111; }
.btn.busy { pointer-events: none; opacity: .7; }
.pill { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 16px; border-radius: 999px; border: 1px solid #1d2d3d; background: transparent; color: #1d2d3d; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; cursor: pointer; white-space: nowrap; transition: background .3s, color .3s; }
.pill:hover, .pill.on { background: #1d2d3d; color: #f2f2f3; }
.link { display: flex; justify-content: center; align-items: center; min-height: 44px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #416180; background: none; border: 0; cursor: pointer; width: 100%; }
.link:hover { color: #1d2d3d; }
.dark .link { color: #d6ebff; } .dark .link:hover { color: #f2f2f3; }
.ul { color: #1d2d3d; border-bottom: 1px solid rgba(29,45,61,.4); padding-bottom: 2px; }
.ul-s { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #1d2d3d; border-bottom: 1px solid rgba(29,45,61,.4); padding-bottom: 2px; white-space: nowrap; background: none; border-top: 0; border-left: 0; border-right: 0; cursor: pointer; }
.ul-s.st { color: #416180; border-color: rgba(65,97,128,.35); }
.dark .ul { color: #f2f2f3; border-color: rgba(242,242,243,.5); }
.dark .ul-s { color: #d6ebff; border-color: rgba(214,235,255,.4); }
.dark .ul-s:hover { color: #f2f2f3; }
.copy { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(29,45,61,.2); background: transparent; cursor: pointer; color: #1d2d3d; display: grid; place-items: center; flex: none; }
.copy:hover { background: rgba(29,45,61,.06); }
.copy.ok { background: #1d2d3d; color: #f2f2f3; }

/* ── inputs ────────────────────────────────────────────────── */
.in { width: 100%; min-height: 52px; padding: 0 16px; font: inherit; font-size: 16px; color: #1d2d3d; background: rgba(255,255,255,.7); border: 1px solid rgba(29,45,61,.18); border-radius: 14px; outline: none; transition: border-color .2s, box-shadow .2s; }
.in:focus { border-color: #1d2d3d; box-shadow: 0 0 0 3px rgba(89,128,166,.2); }
.in.bad { border-color: #1d2d3d; box-shadow: 0 0 0 3px rgba(89,128,166,.15); background: #fff; }
.in.sm { min-height: 50px; padding: 0 14px; background: #fff; border-radius: 12px; }
.dark .in { background: #f2f2f3; border-color: rgba(255,255,255,.6); }
.dark .in:focus { border-color: #fff; box-shadow: 0 0 0 3px rgba(214,235,255,.35); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.hint { font-size: 12px; color: #416180; }
.check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #2c455d; min-height: 36px; cursor: pointer; }
.check input { width: 18px; height: 18px; margin: 0; }
.divider { display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #416180; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: rgba(29,45,61,.14); }

/* ── cart lines ────────────────────────────────────────────── */
.lines { padding: 20px 20px 0; display: flex; flex-direction: column; }
.lines::after { content: ""; border-top: 1px solid rgba(29,45,61,.14); }
.line { display: grid; grid-template-columns: 64px 1fr; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(29,45,61,.14); }
.thumb { width: 64px; height: 80px; border-radius: 12px; overflow: hidden; position: relative; background: #dbe8f3; }
.thumb.sm { width: 52px; height: 64px; border-radius: 10px; }
.thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb::after { content: ""; position: absolute; inset: 0; background: #5980a6; mix-blend-mode: color; opacity: .6; }
.line .body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.line .top { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.pname { font-family: "Cormorant Garamond", Georgia, serif; font-size: 26px; line-height: 1; }
.pname em { font-size: 17px; color: #416180; white-space: nowrap; }
.dark .pname em { color: #d6ebff; }
.ptotal { font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; line-height: 1; font-variant-numeric: tabular-nums; }
.lot { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: #416180; }
.qtyrow { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.stepper { display: inline-flex; align-items: center; border: 1px solid rgba(29,45,61,.2); border-radius: 999px; background: rgba(255,255,255,.6); }
.stepper button { width: 44px; height: 40px; border: 0; background: transparent; cursor: pointer; color: #1d2d3d; font-size: 18px; }
.stepper button:first-child { border-radius: 999px 0 0 999px; }
.stepper button:last-child { border-radius: 0 999px 999px 0; }
.stepper button:hover { background: rgba(29,45,61,.06); }
.stepper span { min-width: 24px; text-align: center; font-variant-numeric: tabular-nums; font-size: 15px; }
.each { font-size: 12px; color: #416180; font-variant-numeric: tabular-nums; }

.shipbar { margin: 20px 20px 0; padding: 14px 16px; border-radius: 14px; animation: rise .4s ease both; }
.shipbar .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.shipbar .msg { font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-size: 17px; }
.shipbar .cap { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #416180; white-space: nowrap; }
.shipbar .track { height: 3px; background: rgba(29,45,61,.12); border-radius: 2px; margin-top: 10px; overflow: hidden; }
.shipbar .fill { height: 100%; background: #416180; border-radius: 2px; transition: width .8s cubic-bezier(.22,1,.36,1); }

.bump { margin: 22px 20px 0; }
.bump .card { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; padding: 12px 14px 12px 12px; border-radius: 14px; border: 1px solid rgba(29,45,61,.14); background: rgba(255,255,255,.4); margin-top: 10px; }
.bump .nm { font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; line-height: 1; }
.bump .nm em { font-size: 15px; color: #416180; }

.sticky { position: sticky; bottom: 0; padding: 14px 16px 24px; padding-bottom: max(24px, env(safe-area-inset-bottom)); background: linear-gradient(180deg, rgba(238,243,248,0), #eef3f8 30%); transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .3s; z-index: 5; }
.sticky.hide { transform: translateY(110%); opacity: 0; }
.sticky .box { padding: 14px 16px 16px; border-radius: 20px; background: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.95); box-shadow: inset 0 1px 0 #fff, 0 24px 50px -24px rgba(29,45,61,.45); backdrop-filter: blur(48px) saturate(1.5); -webkit-backdrop-filter: blur(48px) saturate(1.5); }
.sticky .sum { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: #416180; }
.sticky .sum b { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 400; font-size: 28px; color: #1d2d3d; font-variant-numeric: tabular-nums; }
.sticky .btn { margin-top: 12px; }
.sticky .foot { text-align: center; font-size: 12px; color: #416180; margin-top: 10px; }
.sticky .signin { display: flex; justify-content: center; align-items: center; min-height: 40px; margin-top: 4px; font-size: 12px; color: #416180; gap: 6px; }
.attest { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; cursor: pointer; margin-bottom: 12px; }
.attest input { width: 20px; height: 20px; margin: 1px 0 0; }
.attest span { font-size: 13px; line-height: 19px; color: #1d2d3d; }

/* ── checkout ──────────────────────────────────────────────── */
.summary { margin: 16px 20px 0; border: 1px solid rgba(29,45,61,.14); border-radius: 14px; background: rgba(255,255,255,.5); overflow: hidden; }
.summary > button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 16px; border: 0; background: transparent; cursor: pointer; color: #1d2d3d; text-align: left; }
.summary > button:hover { background: rgba(255,255,255,.6); }
.summary .l { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #416180; }
.summary .l svg { transition: transform .4s; }
.summary.open .l svg { transform: rotate(180deg); }
.summary .t { font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; line-height: 1; font-variant-numeric: tabular-nums; }
.summary .body { display: none; padding: 0 16px 12px; font-size: 13px; color: #2c455d; animation: rise .4s ease both; }
.summary.open .body { display: block; }
.summary .r { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-top: 1px solid rgba(29,45,61,.1); }
.summary .r.m { color: #416180; }
.express { margin: 22px 20px 0; display: flex; flex-direction: column; gap: 10px; }
.express .divider { margin-top: 6px; }
.express:empty { display: none; }
#express-el:empty { display: none; }
.form { margin: 18px 20px 0; display: flex; flex-direction: column; gap: 22px; }
.ret { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 48px; padding: 0 16px; border-radius: 14px; border: 1px dashed rgba(29,45,61,.3); color: #1d2d3d; font-size: 14px; }
.ret:hover { background: rgba(255,255,255,.6); color: #1d2d3d; }
.ret span span { color: #416180; }
.acc { border: 1px solid rgba(29,45,61,.14); border-radius: 14px; background: rgba(255,255,255,.4); overflow: hidden; }
.acc > button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 50px; padding: 0 16px; border: 0; background: transparent; cursor: pointer; color: #1d2d3d; text-align: left; font-size: 14px; }
.acc > button:hover { background: rgba(255,255,255,.6); }
.acc > button span span { color: #416180; }
.acc > button svg { transition: transform .4s; flex: none; }
.acc.open > button svg { transform: rotate(180deg); }
.acc .body { display: none; padding: 2px 12px 12px; flex-direction: column; gap: 8px; animation: rise .35s ease both; }
.acc.open .body { display: flex; }
.methods { border: 1px solid rgba(29,45,61,.18); border-radius: 14px; background: rgba(255,255,255,.55); overflow: hidden; }
.method + .method { border-top: 1px solid rgba(29,45,61,.12); }
.method > button { width: 100%; min-height: 52px; display: grid; grid-template-columns: 20px 1fr auto; gap: 12px; align-items: center; padding: 0 16px; border: 0; background: transparent; cursor: pointer; color: #1d2d3d; text-align: left; font-size: 15px; }
.method > button:hover { background: rgba(255,255,255,.9); }
.method.on > button { background: rgba(255,255,255,.85); }
.method .dot { width: 18px; height: 18px; border-radius: 50%; border: 1px solid #1d2d3d; display: grid; place-items: center; }
.method .dot i { width: 10px; height: 10px; border-radius: 50%; background: #1d2d3d; transform: scale(0); transition: transform .3s cubic-bezier(.22,1,.36,1); }
.method.on .dot i { transform: scale(1); }
.method .hint { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #416180; }
.method .body { display: none; padding: 2px 16px 16px; animation: rise .35s ease both; }
.method.on .body { display: block; }
.method .body p { font-size: 13px; line-height: 19px; color: #2c455d; }
.method .cardf { display: flex; flex-direction: column; gap: 8px; }
#payment-el { min-height: 40px; }
.facts { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding-top: 4px; }
.facts div { font-size: 12px; line-height: 17px; color: #2c455d; }
.facts b { display: block; font-weight: 400; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #416180; margin-bottom: 3px; }

/* ── sign in / crypto / bank ───────────────────────────────── */
.stack { margin: 24px 20px 0; display: flex; flex-direction: column; gap: 8px; }
.lastcard { margin: 28px 20px 0; padding: 16px; }
.lastcard .nm { font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; line-height: 1.1; margin-top: 8px; }
.seg { margin: 18px 20px 0; display: grid; grid-template-columns: 1fr 1fr; padding: 4px; border-radius: 999px; background: rgba(242,242,243,.1); border: 1px solid rgba(255,255,255,.2); }
.seg button { min-height: 42px; border-radius: 999px; border: 0; background: transparent; color: #d6ebff; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: background .3s, color .3s; }
.seg button.on { background: #f2f2f3; color: #1d2d3d; }
.amount { margin: 14px 20px 0; padding: 18px; border-radius: 18px; }
.amount .top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.amount .big { font-family: "Cormorant Garamond", Georgia, serif; font-size: 34px; line-height: 1; font-variant-numeric: tabular-nums; }
.amount .eq { font-size: 13px; color: #d6ebff; font-variant-numeric: tabular-nums; }
.amount .qr { margin-top: 16px; display: grid; grid-template-columns: 120px 1fr; gap: 14px; align-items: center; }
.qrbox { width: 120px; height: 120px; border-radius: 10px; background: #f2f2f3; display: grid; place-items: center; color: #416180; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; overflow: hidden; }
.qrbox canvas { display: block; width: 112px !important; height: 112px !important; }
.addr { font-size: 13px; line-height: 18px; word-break: break-all; margin-top: 6px; font-variant-numeric: tabular-nums; }
.steps3 { margin: 14px 20px 0; display: flex; flex-direction: column; gap: 6px; font-size: 13px; line-height: 19px; color: rgba(242,242,243,.85); }
.steps3 div { display: flex; gap: 10px; } .steps3 div span:first-child { color: #b5d9fd; }
.live { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #b5d9fd; margin-right: 6px; animation: pulse 1.6s ease-in-out infinite; }
.bankcard { padding: 16px; }
.bankcard .top { display: flex; justify-content: space-between; align-items: baseline; }
.bankcard .t { font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; line-height: 1; }
.bankcard .eta { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #416180; }
.bankcard .rows { display: grid; grid-template-columns: auto 1fr auto; gap: 6px 12px; margin-top: 12px; font-size: 13px; color: #2c455d; align-items: center; }
.bankcard .rows .k { color: #416180; } .bankcard .rows .v { color: #1d2d3d; font-variant-numeric: tabular-nums; word-break: break-all; }
.memo { padding: 12px 16px; border-radius: 14px; border: 1px solid rgba(29,45,61,.14); font-size: 13px; line-height: 19px; color: #2c455d; }
.memo b { font-weight: 400; color: #1d2d3d; font-variant-numeric: tabular-nums; }
.bottom { padding: 0 16px 24px; padding-bottom: max(24px, env(safe-area-inset-bottom)); display: flex; flex-direction: column; gap: 8px; }

/* ── confirmed / tracking / declined / empty ───────────────── */
.done { display: flex; align-items: center; gap: 14px; animation: rise .7s cubic-bezier(.16,1,.3,1) both; }
.done .tick { width: 56px; height: 56px; border-radius: 50%; background: #f2f2f3; color: #1d2d3d; display: grid; place-items: center; flex: none; box-shadow: 0 20px 40px -16px rgba(0,0,0,.5); }
.done .tick.pending { background: rgba(242,242,243,.15); color: #f2f2f3; border: 1px solid rgba(255,255,255,.5); }
.done .sub { font-size: 14px; color: #f2f2f3; margin-top: 4px; font-variant-numeric: tabular-nums; }
.h1.xl { font-size: 48px; line-height: .98; margin-top: 22px; animation: rise .8s cubic-bezier(.16,1,.3,1) .1s both; }
.progress { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; animation: rise .8s cubic-bezier(.16,1,.3,1) .3s both; }
.progress div { display: flex; flex-direction: column; gap: 8px; }
.progress .bar { height: 2px; border-radius: 1px; background: rgba(242,242,243,.3); }
.progress .on .bar { background: #f2f2f3; }
.progress .t { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #d6ebff; }
.progress .on .t { color: #f2f2f3; }
.progress .d { font-size: 12px; color: rgba(242,242,243,.7); line-height: 16px; }
.links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 14px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.recap { padding: 16px; }
.recap .top { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #d6ebff; }
.recap .ln { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-top: 10px; }
.recap .ln .pname { font-size: 22px; flex: 1; min-width: 0; } .recap .ln .pname em { font-size: 15px; }
.recap .ln .v { flex: none; font-variant-numeric: tabular-nums; font-size: 14px; }
.recap .tot { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(242,242,243,.2); }
.recap .tot span:first-child { font-size: 13px; color: #d6ebff; }
.recap .tot b { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 400; font-size: 28px; line-height: 1; font-variant-numeric: tabular-nums; }
.savecard { padding: 14px 16px; border-radius: 18px; background: rgba(242,242,243,.94); color: #1d2d3d; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.savecard .muted { color: #416180; }
.savecard .t { font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; line-height: 1.05; }
.savecard .pill { min-height: 44px; padding: 0 18px; background: #1d2d3d; color: #f2f2f3; }
.timeline { margin: 22px 20px 0; padding: 18px 18px 8px; border-radius: 18px; }
.tl { display: grid; grid-template-columns: 20px 1fr auto; gap: 0 14px; align-items: start; position: relative; padding-bottom: 18px; }
.tl .ln { position: absolute; left: 9px; top: 18px; bottom: 0; width: 1px; background: rgba(29,45,61,.2); }
.tl.done .ln { background: #1d2d3d; } .tl:last-child .ln { display: none; }
.tl .dot { width: 20px; height: 20px; border-radius: 50%; border: 1px solid #1d2d3d; background: transparent; display: grid; place-items: center; }
.tl.done .dot { background: #1d2d3d; } .tl.now .dot { background: #5980a6; animation: pulse 2.4s ease-in-out infinite; }
.tl .dot svg { opacity: 0; } .tl.done .dot svg { opacity: 1; }
.tl .t { font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; line-height: 1.05; }
.tl.future .t { color: #416180; }
.tl .d { font-size: 12px; color: #416180; margin-top: 3px; }
.tl .w { font-size: 12px; color: #416180; font-variant-numeric: tabular-nums; white-space: nowrap; }
.kv { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-radius: 14px; border: 1px solid rgba(29,45,61,.14); gap: 12px; }
.kv .k { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #416180; }
.kv .v { font-size: 14px; margin-top: 3px; font-variant-numeric: tabular-nums; }
.plain { margin: 22px 20px 0; display: flex; flex-direction: column; border-top: 1px solid rgba(29,45,61,.14); }
.plain .it { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(29,45,61,.14); }
.plain .pname { font-size: 22px; } .plain .pname em { font-size: 15px; }
.alert { margin: 22px 20px 0; padding: 16px; border-radius: 16px; background: rgba(255,255,255,.75); border: 1px solid #1d2d3d; animation: rise .5s ease both; display: flex; gap: 12px; align-items: flex-start; }
.alert .bang { width: 22px; height: 22px; border-radius: 50%; background: #1d2d3d; color: #f2f2f3; display: grid; place-items: center; flex: none; font-size: 14px; font-weight: 500; }
.alert .t { font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; line-height: 1.05; }
.alert p { font-size: 13px; line-height: 19px; color: #2c455d; margin-top: 6px; }
.starter { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(29,45,61,.14); }
.starter .pname { font-size: 24px; } .starter .pname em { font-size: 16px; }
.starter .cat { font-size: 12px; color: #416180; margin-top: 4px; letter-spacing: .04em; text-transform: uppercase; }
.heldbar { margin: 16px 20px 0; display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-radius: 14px; border: 1px solid rgba(29,45,61,.14); background: rgba(255,255,255,.5); }
.heldbar .t { font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; line-height: 1; font-variant-numeric: tabular-nums; }
.foot-note { padding: 20px 20px 28px; text-align: center; font-size: 12px; color: #416180; }
.demo-tag { position: fixed; left: 12px; bottom: 12px; z-index: 50; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #416180; background: rgba(255,255,255,.7); border: 1px solid rgba(29,45,61,.14); border-radius: 999px; padding: 6px 10px; pointer-events: none; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 60; padding: 12px 18px; border-radius: 999px; background: #1d2d3d; color: #f2f2f3; font-size: 13px; box-shadow: 0 20px 40px -16px rgba(0,0,0,.5); animation: rise .3s ease both; max-width: calc(100% - 32px); }
