/* Memories In Motion — Memories In Motion Enterprise */

/* ---------------------------------------------------------------------------
   BRAND PALETTE — Memories In Motion Enterprise (blue & white)
   Re-skinning the whole app means changing the eight values in this first block.
   The token names are historical; --pu* is simply "the brand colour".
   --------------------------------------------------------------------------- */
:root {
  --pu:        #1D4ED8;   /* primary brand blue  */
  --pu-600:    #2563EB;   /* hover / lighter     */
  --pu-700:    #1E40AF;   /* dark / text on tint */
  --pu-050:    #EFF4FE;   /* faint tint fill     */
  --pu-100:    #D8E4FD;   /* tint border         */
  --side:      #0E1E3C;   /* deep navy sidebar   */
  --side-2:    #16294C;
  --red:       #1D4ED8;   /* company wordmark    */

  --bg:        #F4F6FB;
  --card:      #FFFFFF;
  --ink:       #16233B;
  --ink-2:     #3B4A66;
  --muted:     #64748B;
  --faint:     #94A3B8;
  --line:      #E3E9F3;
  --line-2:    #EEF2F9;
  --good:      #16A34A;
  --good-bg:   #E9F7EF;
  --warn:      #E5890B;
  --warn-bg:   #FDF3E3;
  --bad:       #DC2626;
  --bad-bg:    #FDECEC;
  --blue:      #2563EB;
  --blue-bg:   #EAF1FE;
  --orange:    #EA7317;
  --orange-bg: #FEF0E4;
  --teal:      #0E9488;
  --teal-bg:   #E4F5F3;
  --gold:      #D4AF37;
  --r:         14px;
  --r-sm:      10px;
  --sh:        0 1px 2px rgba(22,35,59,.05), 0 4px 14px rgba(22,35,59,.06);
  --sh-lg:     0 8px 30px rgba(22,35,59,.14);
  --fs:        14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: var(--fs)/1.5 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -.01em; line-height: 1.22; }
h1 { font-size: 28px; } h2 { font-size: 20px; } h3 { font-size: 16px; } h4 { font-size: 14px; }
p { margin: 0 0 10px; }
a { color: var(--pu); }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--pu-600); outline-offset: 2px; border-radius: 6px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ============================================================= buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--r-sm); border: 1px solid var(--line);
  background: #fff; color: var(--ink); font-weight: 600; font-size: 14px;
  cursor: pointer; transition: .14s; white-space: nowrap; text-decoration: none;
}
.btn:hover { border-color: #C6D3E8; background: #F8FAFE; }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.btn-primary { background: var(--pu); border-color: var(--pu); color: #fff; box-shadow: 0 2px 10px rgba(29,78,216,.30); }
.btn-primary:hover { background: var(--pu-600); border-color: var(--pu-600); }
.btn-ghost { background: transparent; border-color: transparent; color: var(--ink-2); }
.btn-ghost:hover { background: var(--pu-050); color: var(--pu-700); }
.btn-danger { color: var(--bad); border-color: #F3D2D2; }
.btn-danger:hover { background: var(--bad-bg); }
.btn-lg { padding: 14px 24px; font-size: 15px; border-radius: 12px; }
.btn-sm { padding: 6px 11px; font-size: 13px; border-radius: 8px; }
.btn-block { width: 100%; }
.btn-icon { padding: 8px; width: 34px; height: 34px; }

.seg { display: inline-flex; background: var(--line-2); border-radius: 10px; padding: 3px; gap: 3px; }
.seg button {
  border: 0; background: transparent; padding: 7px 14px; border-radius: 8px;
  font-weight: 600; font-size: 13px; color: var(--muted); cursor: pointer;
}
.seg button.on { background: var(--pu); color: #fff; box-shadow: 0 1px 4px rgba(29,78,216,.32); }

/* ============================================================== chrome */
.app {
  display: grid; height: 100vh;
  grid-template-columns: 236px minmax(0, 1fr);
  grid-template-rows: 74px minmax(0, 1fr);
  grid-template-areas: "brand top" "side main";
}
.brand {
  grid-area: brand; background: #fff; border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; padding: 0 14px;
}
.brand-mark { flex: 0 0 auto; line-height: 0; }
/* flex-start, not the default stretch — a stretched `width:auto` image would
   be pulled to the container width and distort the logo */
.brand-lockup { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; min-width: 0; }
.brand-lockup img { max-width: 100%; object-fit: contain; }
.brand-txt { min-width: 0; display: block; }
.brand-name { display: block; font-weight: 800; font-size: 12px; letter-spacing: .02em; color: var(--red); line-height: 1.15; }
.brand-sub { display: block; font-size: 10px; color: var(--faint); letter-spacing: .04em; text-transform: uppercase; }

/* The logo artwork has an opaque white background, so anywhere it sits on the
   page tint it gets a white plate of its own and reads as a letterhead. */
.letterhead {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 18px; margin-bottom: 22px; box-shadow: var(--sh);
}
.letterhead img { max-width: 100%; object-fit: contain; }

.top {
  grid-area: top; background: #fff; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 18px; padding: 0 20px; min-width: 0;
}
.top-logo { display: flex; align-items: baseline; gap: 2px; }
.top-logo b { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.top-logo .a { margin-right: 4px; }
.top-logo .a { color: var(--ink); } .top-logo .b { color: var(--pu); }
.top-tag { font-size: 11.5px; color: var(--muted); margin-top: -3px; }
.top-ev { display: flex; flex-direction: column; min-width: 0; flex: 1; align-items: center; }
.top-ev-name { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 18px; }
.top-ev-meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; justify-content: center; }
.top-ev-meta span { display: inline-flex; align-items: center; gap: 5px; }
.top-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Home / Sign out. Present in every header at every width — the pair used to
   exist only in the sidebar, which disappears below 1000px. */
/* 38px, not the 34px of a normal .btn-sm — these are the two controls someone
   reaches for when they are lost, and they are often hit on a phone. */
.btn-exit { white-space: nowrap; min-height: 38px; }
.empty-exit { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-2); }
.btn-exit span { opacity: .75; margin-right: 1px; }
.mnav { display: none; }

.side {
  grid-area: side; background: var(--side); color: #C3D2E8; padding: 12px 10px;
  overflow-y: auto; display: flex; flex-direction: column;
}
.nav { display: flex; flex-direction: column; gap: 2px; }
.nav a {
  display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px;
  color: #AFC0DA; text-decoration: none; font-size: 13.5px; font-weight: 500; cursor: pointer;
}
.nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav a.on { background: var(--pu); color: #fff; font-weight: 600; }
.nav a small { display: block; font-size: 10.5px; opacity: .7; font-weight: 400; }
.nav-sep { margin: 12px 12px 6px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #6E85AB; }
.side-foot { margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.09); }

.main { grid-area: main; overflow: auto; padding: 18px 20px 40px; min-width: 0; }

/* =============================================================== cards */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh); }
.card-pad { padding: 16px; }
.card-hd {
  padding: 14px 16px; border-bottom: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.card-hd h3 { font-size: 15px; }
.card-hd .sub { font-size: 12px; color: var(--muted); font-weight: 400; }

.stat { display: flex; align-items: center; gap: 12px; padding: 14px; }
.stat-ic { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; font-size: 19px; }
.stat-k { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.stat-v { font-size: 21px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.stat-s { font-size: 11.5px; color: var(--faint); }
.i-pu { background: var(--pu-050); color: var(--pu); } .i-bl { background: var(--blue-bg); color: var(--blue); }
.i-gr { background: var(--good-bg); color: var(--good); } .i-or { background: var(--orange-bg); color: var(--orange); }
.i-te { background: var(--teal-bg); color: var(--teal); } .i-wa { background: var(--warn-bg); color: var(--warn); }
.i-rd { background: var(--bad-bg); color: var(--bad); }

.bar { height: 6px; border-radius: 4px; background: var(--line-2); overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--pu); border-radius: 4px; transition: width .3s; }
.bar.warn > i { background: var(--warn); } .bar.bad > i { background: var(--bad); }

.badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .01em; background: var(--line-2); color: var(--muted);
}
.badge-good { background: var(--good-bg); color: var(--good); }
.badge-warn { background: var(--warn-bg); color: var(--warn); }
.badge-bad  { background: var(--bad-bg);  color: var(--bad); }
.badge-pu   { background: var(--pu-050);  color: var(--pu-700); }
.badge-bl   { background: var(--blue-bg); color: var(--blue); }

.pill { padding: 4px 10px; border-radius: 999px; background: var(--line-2); font-size: 11.5px; color: var(--muted); }

/* ============================================================= workspace */
.ws {
  display: grid; gap: 14px; align-items: start;
  grid-template-columns: 288px minmax(0, 1fr) 316px;
  grid-template-rows: auto minmax(420px, 1fr) auto;
}
.ws > * { min-width: 0; }
.ws-inv     { grid-column: 1; grid-row: 1 / 4; position: sticky; top: 0; max-height: calc(100vh - 110px); display: flex; flex-direction: column; }
.ws-stats   { grid-column: 2 / 4; grid-row: 1; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px; }
.ws-canvas  { grid-column: 2; grid-row: 2; display: flex; flex-direction: column; min-height: 480px; }
.ws-budget  { grid-column: 3; grid-row: 2 / 4; display: flex; flex-direction: column; gap: 14px; }
.ws-extra   { grid-column: 2; grid-row: 3; }

@media (max-width: 1420px) {
  .ws { grid-template-columns: 268px minmax(0, 1fr); }
  .ws-stats  { grid-column: 2; grid-template-columns: repeat(3, minmax(0,1fr)); }
  .ws-canvas { grid-column: 2; }
  .ws-budget { grid-column: 1 / 3; grid-row: 4; }
  .ws-extra  { grid-column: 1 / 3; grid-row: 5; }
  .ws-inv    { grid-row: 1 / 4; }
}
@media (max-width: 1000px) {
  /* Let the document scroll instead of the main pane — a pinned multi-row
     header on a phone leaves almost nothing for the content itself. */
  .app {
    grid-template-columns: 1fr; grid-template-rows: auto auto 1fr;
    grid-template-areas: "brand" "top" "main";
    height: auto; min-height: 100vh;
  }
  .main { overflow: visible; }
  .ws-canvas { min-height: 420px; }
  .side { display: none; }
  .mnav {
    display: flex; gap: 6px; flex: 1 1 100%; order: 4;
    overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin;
  }
  .mnav button {
    flex: 0 0 auto; border: 1px solid var(--line); background: #fff; border-radius: 999px;
    padding: 7px 13px; font-size: 12.5px; font-weight: 600; color: var(--muted); cursor: pointer;
  }
  .mnav button.on { background: var(--pu); border-color: var(--pu); color: #fff; }
  .ws { grid-template-columns: minmax(0, 1fr); }
  .ws-inv, .ws-stats, .ws-canvas, .ws-budget, .ws-extra { grid-column: 1; grid-row: auto; position: static; max-height: none; }
  .ws-stats { grid-template-columns: repeat(2, 1fr); }
  /* the header has to stack rather than crush the event name and actions */
  .top { flex-wrap: wrap; padding: 10px 14px; gap: 10px 14px; height: auto; }
  .top-ev { align-items: flex-start; flex: 1 1 100%; order: 3; }
  .top-ev-meta { justify-content: flex-start; gap: 12px; }
  .top-ev-name { font-size: 16px; }
  .top-actions { margin-left: auto; }
  .main { padding: 14px 14px 32px; }
}
@media (max-width: 560px) {
  .top-actions { flex: 1 1 100%; margin-left: 0; }
  .top-actions .btn { flex: 1; }
  .land-hero { padding: 28px 18px; }
  .wiz { padding: 18px 14px 50px; }
  .tiles { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); }
}

/* ========================================================== inventory rail */
.inv-search {
  width: 100%; padding: 9px 12px 9px 32px; border: 1px solid var(--line); border-radius: 9px;
  font-size: 13px; background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239C95B0' stroke-width='2.4' stroke-linecap='round'><circle cx='11' cy='11' r='7'/><path d='M20 20l-3.5-3.5'/></svg>") no-repeat 10px center;
}
.inv-cats { display: flex; gap: 5px; overflow-x: auto; padding: 10px 0 4px; scrollbar-width: thin; }
.inv-cats button {
  flex: 0 0 auto; border: 1px solid var(--line); background: #fff; border-radius: 9px;
  padding: 7px 11px; font-size: 12px; font-weight: 600; color: var(--muted); cursor: pointer;
}
.inv-cats button.on { background: var(--pu-050); border-color: var(--pu-100); color: var(--pu-700); }
.inv-list { overflow-y: auto; flex: 1; margin: 0 -4px; padding: 4px; }

.inv-item {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 10px; align-items: center;
  padding: 9px; border-radius: 11px; cursor: grab; border: 1px solid transparent;
}
.inv-item:hover { background: var(--pu-050); border-color: var(--pu-100); }
.inv-item:active { cursor: grabbing; }
.inv-item .glyph { width: 52px; height: 52px; border-radius: 9px; display: block; }
.inv-nm { font-weight: 650; font-size: 13px; line-height: 1.25; }
.inv-pr { font-size: 12.5px; color: var(--pu); font-weight: 700; }
.inv-av { font-size: 11.5px; color: var(--good); }
.inv-av.low { color: var(--warn); } .inv-av.none { color: var(--bad); }
.inv-add {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--pu-100);
  background: #fff; color: var(--pu); font-size: 17px; line-height: 1; cursor: pointer; display: grid; place-items: center;
}
.inv-add:hover { background: var(--pu); color: #fff; border-color: var(--pu); }
.inv-qty { display: flex; align-items: center; gap: 4px; }
.inv-qty button { width: 24px; height: 24px; border-radius: 6px; border: 1px solid var(--line); background: #fff; cursor: pointer; color: var(--ink-2); }
.inv-qty b { min-width: 20px; text-align: center; font-size: 12.5px; }

/* ============================================================== planner */
.plan-wrap { flex: 1; position: relative; background: #FCFCFE; border-radius: 0 0 var(--r) var(--r); overflow: hidden; }
.plan-svg { width: 100%; height: 100%; display: block; touch-action: none; cursor: default; }
.plan-obj { cursor: move; }
.plan-obj:hover rect, .plan-obj:hover circle { filter: brightness(.985); }
.plan-obj.is-bad > g > rect, .plan-obj.is-bad > g > circle { stroke: var(--bad) !important; stroke-width: .3px !important; }
.plan-handle { cursor: pointer; }
.plan-label { font-weight: 700; fill: var(--ink); pointer-events: none; user-select: none; }
.plan-sub { fill: var(--muted); pointer-events: none; user-select: none; }
.plan-dim-label { fill: var(--muted); font-size: 2.2px; font-weight: 600; }
.plan-fixed-label { fill: var(--faint); font-size: 1.5px; font-weight: 600; }

.plan-tools { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.plan-tools .btn-sm { padding: 6px 10px; }
.plan-foot {
  display: flex; align-items: center; gap: 14px; padding: 9px 16px; border-top: 1px solid var(--line-2);
  font-size: 12.5px; flex-wrap: wrap;
}
.plan-foot .fl { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.dot-good { background: var(--good); } .dot-warn { background: var(--warn); } .dot-bad { background: var(--bad); }

.inspector {
  position: absolute; left: 12px; bottom: 12px; width: 244px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--sh-lg); padding: 12px; font-size: 12.5px;
}
.inspector h4 { font-size: 13px; margin-bottom: 2px; }
.insp-row { display: flex; justify-content: space-between; gap: 8px; padding: 3px 0; color: var(--muted); }
.insp-row b { color: var(--ink); font-weight: 650; }
.insp-actions { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }

/* =============================================================== budget */
.bl { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; font-size: 13px; }
.bl .k { color: var(--ink-2); }
.bl .v { font-weight: 650; font-variant-numeric: tabular-nums; }
.bl-tot { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; font-size: 15px; }
.bl-tot .v { font-weight: 800; color: var(--pu); }
.bl-sub { border-top: 1px solid var(--line-2); margin-top: 6px; padding-top: 8px; }

/* ============================================================ packages */
.pk-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
@media (max-width: 780px) { .pk-grid { grid-template-columns: 1fr; } }
.pk {
  border: 1.5px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff;
  display: flex; flex-direction: column; transition: .16s;
}
.pk:hover { border-color: var(--pu-100); box-shadow: var(--sh); }
.pk.on { border-color: var(--pu); box-shadow: 0 0 0 3px var(--pu-050); }
.pk-tag { padding: 5px 12px; font-size: 11px; font-weight: 800; letter-spacing: .08em; color: #fff; }
.pk-good { background: #64748B; } .pk-better { background: #0EA5E9; } .pk-wow { background: var(--pu); }
.pk-body { padding: 13px; flex: 1; }
.pk-price { font-size: 25px; font-weight: 800; letter-spacing: -.02em; }
.pk-desc { font-size: 12px; color: var(--muted); margin: 2px 0 10px; min-height: 32px; }
.pk-list { list-style: none; margin: 0; padding: 0; font-size: 12.5px; }
.pk-list li { display: flex; gap: 7px; padding: 3px 0; align-items: flex-start; }
.pk-list li::before { content: "✓"; color: var(--good); font-weight: 800; flex: 0 0 auto; }
.pk-foot { padding: 0 13px 13px; }
.pk-hero { height: 92px; background: linear-gradient(135deg, #EFE9FB, #FBF3E6); position: relative; overflow: hidden; }

/* =============================================================== wizard */
.wiz { max-width: 860px; margin: 0 auto; padding: 26px 20px 60px; }
.wiz-steps { display: flex; gap: 6px; margin-bottom: 26px; }
.wiz-steps i { flex: 1; height: 4px; border-radius: 3px; background: var(--line); }
.wiz-steps i.on { background: var(--pu); }
.wiz-q { font-size: 27px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 4px; }
.wiz-h { color: var(--muted); margin-bottom: 20px; }
.wiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }

.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 10px; }
.tile {
  border: 1.5px solid var(--line); background: #fff; border-radius: 12px; padding: 14px 12px;
  cursor: pointer; text-align: left; transition: .14s;
}
.tile:hover { border-color: var(--pu-100); background: #FCFAFF; }
.tile.on { border-color: var(--pu); background: var(--pu-050); box-shadow: 0 0 0 3px var(--pu-050); }
.tile-ic { font-size: 24px; line-height: 1; margin-bottom: 8px; display: block; }
.tile-nm { font-weight: 650; font-size: 13.5px; }
.tile-ds { font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.tile-sw { display: flex; gap: 4px; margin-bottom: 9px; }
.tile-sw i { width: 20px; height: 20px; border-radius: 5px; border: 1px solid rgba(0,0,0,.09); }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 650; color: var(--ink-2); margin-bottom: 5px; }
.input, select.input, textarea.input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px;
  font: inherit; font-size: 14px; background: #fff; color: var(--ink);
}
.input:focus { border-color: var(--pu); outline: none; box-shadow: 0 0 0 3px var(--pu-050); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 640px) { .grid2, .grid3 { grid-template-columns: 1fr; } }

.stepper { display: flex; align-items: center; gap: 10px; }
.stepper button { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line); background: #fff; font-size: 20px; cursor: pointer; }
.stepper input { width: 110px; text-align: center; font-size: 24px; font-weight: 800; padding: 8px; border: 1px solid var(--line); border-radius: 11px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: 6px 13px;
  font-size: 12.5px; cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
}
.chip.on { border-color: var(--pu); background: var(--pu-050); color: var(--pu-700); font-weight: 650; }
.chip i { width: 13px; height: 13px; border-radius: 4px; border: 1px solid rgba(0,0,0,.12); }

/* ============================================================== landing */
.land { max-width: 1080px; margin: 0 auto; padding: 34px 20px 70px; }
.land-hero {
  border-radius: 22px; padding: 54px 44px; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(125deg, #0E1E3C 0%, #1B3E8C 46%, #2563EB 100%);
}
.land-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(closest-side at 82% 24%, rgba(147,197,253,.38), transparent 72%),
    radial-gradient(closest-side at 16% 88%, rgba(255,255,255,.20), transparent 70%);
}
.land-hero > * { position: relative; z-index: 1; }
.land-eyebrow { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; opacity: .82; font-weight: 700; }
.land-h1 { font-size: 46px; font-weight: 800; letter-spacing: -.03em; margin: 12px 0 14px; max-width: 15ch; line-height: 1.06; }
.land-p { font-size: 16px; opacity: .9; max-width: 60ch; margin-bottom: 26px; }
.land-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--pu-700); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: #F6F2FF; border-color: #F6F2FF; }
.btn-clear { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.42); color: #fff; }
.btn-clear:hover { background: rgba(255,255,255,.2); border-color: #fff; }
@media (max-width: 700px) { .land-h1 { font-size: 32px; } .land-hero { padding: 34px 22px; } }

.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 30px 0; }
@media (max-width: 780px) { .steps3 { grid-template-columns: 1fr; } }
.step-n { width: 34px; height: 34px; border-radius: 10px; background: var(--pu-050); color: var(--pu); display: grid; place-items: center; font-weight: 800; margin-bottom: 10px; }

/* ================================================================ misc */
.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.tbl th {
  text-align: left; font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--faint); font-weight: 700; padding: 9px 10px; border-bottom: 1px solid var(--line);
}
.tbl td { padding: 9px 10px; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl .num { text-align: right; font-variant-numeric: tabular-nums; }
.tbl tbody tr:hover { background: #FCFBFE; }

.alist { display: flex; flex-direction: column; gap: 8px; }
.alert {
  display: flex; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: 12.5px;
  border: 1px solid; align-items: flex-start;
}
.alert-bad  { background: var(--bad-bg);  border-color: #F5D5D5; color: #8E1E1E; }
.alert-warn { background: var(--warn-bg); border-color: #F6E2BE; color: #7A4B06; }
.alert-good { background: var(--good-bg); border-color: #C9EBD6; color: #10693B; }
.alert-info { background: var(--pu-050);  border-color: var(--pu-100); color: var(--pu-700); }
.alert b { font-weight: 700; }

.empty { text-align: center; padding: 44px 20px; color: var(--muted); }
.empty h3 { color: var(--ink); margin-bottom: 6px; }

.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; }

.modal-bd {
  position: fixed; inset: 0; background: rgba(14,30,60,.55); backdrop-filter: blur(3px);
  display: grid; place-items: center; padding: 20px; z-index: 60;
}
.modal {
  background: #fff; border-radius: 16px; width: min(680px, 100%); max-height: 88vh; overflow: auto;
  box-shadow: 0 24px 70px rgba(14,30,60,.38);
}
.modal-hd { padding: 18px 20px; border-bottom: 1px solid var(--line-2); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.modal-bd-in { padding: 20px; }
.modal-ft { padding: 14px 20px; border-top: 1px solid var(--line-2); display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }

.toast-wrap { position: fixed; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: 8px; z-index: 90; }
.toast {
  background: var(--side); color: #fff; padding: 11px 16px; border-radius: 11px; font-size: 13px;
  box-shadow: var(--sh-lg); animation: tin .22s ease-out; max-width: 340px;
}
.toast.ok { background: #14532D; } .toast.err { background: #7F1D1D; }
@keyframes tin { from { opacity: 0; transform: translateY(8px); } }

.disc { font-size: 11.5px; color: var(--faint); line-height: 1.5; }

.slider { width: 100%; accent-color: var(--pu); }

.ask-log { max-height: 260px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.ask-msg { padding: 10px 12px; border-radius: 11px; font-size: 13px; }
.ask-you { background: var(--pu); color: #fff; align-self: flex-end; max-width: 84%; }
.ask-et { background: var(--line-2); align-self: flex-start; max-width: 92%; }
.ask-et .d { font-variant-numeric: tabular-nums; }

.viz {
  position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 16/9;
  background: linear-gradient(#0E1E3C, #1B3E8C);
}
.viz canvas, .viz svg { width: 100%; height: 100%; display: block; }
.viz-lbl {
  position: absolute; left: 12px; bottom: 12px; background: rgba(14,30,60,.74); color: #fff;
  padding: 5px 11px; border-radius: 8px; font-size: 11.5px; backdrop-filter: blur(4px);
}
.viz-views { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }

.cmp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .cmp { grid-template-columns: 1fr; } }
.cmp-tbl td.d { font-variant-numeric: tabular-nums; }
.delta-up { color: var(--bad); font-weight: 650; } .delta-dn { color: var(--good); font-weight: 650; }

.kv { display: grid; grid-template-columns: auto 1fr; gap: 5px 14px; font-size: 13px; }
.kv dt { color: var(--muted); } .kv dd { margin: 0; font-weight: 600; }

.ck { display: flex; align-items: center; gap: 9px; padding: 8px 0; border-bottom: 1px solid var(--line-2); font-size: 13px; }
.ck:last-child { border-bottom: 0; }
.ck input { width: 17px; height: 17px; accent-color: var(--pu); }
.ck.done span { text-decoration: line-through; color: var(--faint); }

.tl { list-style: none; margin: 0; padding: 0; }
.tl li { display: grid; grid-template-columns: 82px 1fr; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line-2); font-size: 13px; }
.tl li b { color: var(--pu); font-variant-numeric: tabular-nums; }

/* =============================================================== print */
@media print {
  .side, .top, .brand, .no-print { display: none !important; }
  .app { display: block; height: auto; }
  .main { overflow: visible; padding: 0; }
  body { background: #fff; }
  .card { box-shadow: none; border-color: #DDD; break-inside: avoid; }
  .prop-page { max-width: none; }
}
.prop-page { max-width: 900px; margin: 0 auto; }
.prop-hd { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding-bottom: 18px; border-bottom: 2px solid var(--pu); margin-bottom: 20px; }


/* Wide tables scroll inside their own card rather than pushing the page sideways */
.tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tbl-scroll > .tbl { min-width: 560px; }

@media (max-width: 900px) {
  .req-grid { grid-template-columns: minmax(0, 1fr) !important; }
}

/* ======================================================= ROLE EXPERIENCES */

/* --- sign in --- */
.signin { max-width: 900px; margin: 0 auto; padding: 44px 20px 60px; }
.role-card { text-align: left; cursor: pointer; border: 1.5px solid var(--line); transition: .16s; }
.role-card:hover { border-color: var(--pu); box-shadow: 0 0 0 3px var(--pu-050); }
.role-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 22px; }

.role-chip {
  background: rgba(255,255,255,.07); border-radius: 10px; padding: 9px 12px; margin-bottom: 12px;
}
.role-chip b { display: block; font-size: 13px; color: #fff; }
.role-chip span { font-size: 11px; color: #8FA5C6; }

/* --- prospect result --- */
.prospect { max-width: 1060px; }
.hero-result {
  border-radius: 18px; padding: 30px 28px; color: #fff; margin-bottom: 18px;
  background: linear-gradient(125deg, #0E1E3C 0%, #1B3E8C 55%, #2563EB 100%);
}
.hero-result h1 { font-size: 34px; margin: 10px 0 8px; letter-spacing: -.02em; }
.hr-meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: 14px; opacity: .92; align-items: center; }
.hr-meta i { opacity: .5; font-style: normal; }
.pr-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); gap: 14px; align-items: start; }
@media (max-width: 900px) { .pr-grid { grid-template-columns: minmax(0,1fr); } }

.an-row { display: flex; gap: 9px; align-items: center; padding: 4px 0; font-size: 13.5px; }
.an-tick { color: var(--good); font-weight: 800; }

/* --- the locked layout card --- */
.locked-card { overflow: hidden; }
.lock-wrap { position: relative; }
.lock-art { display: block; width: 100%; height: auto; }
.lock-body {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 18px;
}
.lock-badge {
  width: 46px; height: 46px; border-radius: 50%; background: var(--pu); color: #fff;
  display: grid; place-items: center; font-size: 21px; margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(29,78,216,.35);
}
.lock-body h2 { font-size: 19px; }
.lock-sub { font-weight: 650; font-size: 13.5px; margin: 6px 0 4px; color: var(--ink-2); }
.lock-note { font-size: 12.5px; color: var(--muted); max-width: 44ch; margin-bottom: 14px; }

.cta-band {
  margin-top: 26px; text-align: center; color: #fff; border: 0;
  background: linear-gradient(125deg, #0E1E3C, #6D28D9);
}
.cta-band h2 { font-size: 25px; margin-bottom: 6px; }
.cta-band p { opacity: .9; margin-bottom: 16px; }

/* --- style board --- */
.sb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 14px; }
.sb-card { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); }
.sb-img { position: relative; line-height: 0; }
.sb-svg { width: 100%; height: auto; display: block; }
.sb-mark {
  position: absolute; right: 8px; bottom: 8px; font-size: 8.5px; line-height: 1.3; letter-spacing: .06em;
  color: rgba(255,255,255,.92); background: rgba(14,30,60,.46); padding: 4px 7px; border-radius: 5px;
  text-align: right; backdrop-filter: blur(3px);
}
.sb-card figcaption { padding: 12px 13px; line-height: 1.4; }
.sb-card figcaption b { display: block; font-size: 13.5px; }
.sb-card figcaption span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* --- booking reveal --- */
.reveal {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px; color: #fff;
  background: linear-gradient(140deg, #0E1E3C 0%, #1B3E8C 55%, #2563EB 100%);
}
.reveal h1 { font-size: 46px; letter-spacing: -.03em; animation: rvUp .5s ease-out both; }
.reveal-sub { font-size: 17px; opacity: .9; margin: 8px 0 24px; animation: rvUp .5s .1s ease-out both; }
.reveal-burst { font-size: 60px; animation: rvPop .6s cubic-bezier(.2,1.4,.4,1) both; }
.reveal-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 26px; }
.reveal-item {
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22);
  padding: 9px 18px; border-radius: 999px; font-size: 14px; animation: rvUp .45s ease-out both;
}
@keyframes rvPop { from { transform: scale(.3); opacity: 0; } }
@keyframes rvUp { from { transform: translateY(14px); opacity: 0; } }

/* --- countdown --- */
.countdown {
  background: linear-gradient(125deg, #0E1E3C, #6D28D9); color: #fff;
  border-radius: var(--r); padding: 22px; text-align: center;
}
.cd-num { font-size: 54px; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.cd-lbl { font-size: 15px; opacity: .9; margin-top: 4px; }
.cd-steps { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 18px; }
.cd-step {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px;
  background: rgba(255,255,255,.12); padding: 6px 12px; border-radius: 999px; opacity: .7;
}
.cd-step.done { background: rgba(255,255,255,.24); opacity: 1; font-weight: 600; }
.cd-step i { font-style: normal; }

.portal-card { text-align: left; cursor: pointer; transition: .16s; border: 1px solid var(--line); }
.portal-card:hover { border-color: var(--pu); box-shadow: 0 0 0 3px var(--pu-050); }

/* --- owner pipeline --- */
.pipeline { display: flex; gap: 6px; overflow-x: auto; padding: 14px 16px; }
.pipe-step {
  flex: 0 0 auto; min-width: 96px; text-align: center; padding: 10px 8px;
  border-radius: 10px; background: var(--line-2); border: 1px solid transparent;
}
.pipe-step b { display: block; font-size: 19px; font-weight: 800; color: var(--faint); }
.pipe-step span { font-size: 10.5px; color: var(--muted); }
.pipe-step.has b { color: var(--pu); }
.pipe-step.has { background: var(--pu-050); border-color: var(--pu-100); }
.pipe-step.booked.has { background: var(--good-bg); border-color: #C9EBD6; }
.pipe-step.booked.has b { color: var(--good); }

/* --- developer --- */
.health { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px; }
.hz { display: flex; align-items: center; gap: 9px; padding: 9px 11px; background: var(--line-2); border-radius: 9px; font-size: 12.5px; }
.hz b { font-weight: 650; }
.hz span { margin-left: auto; color: var(--muted); font-size: 11.5px; }
.flag-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 6px 0; font-size: 13px; }

.rt-in { width: 82px; padding: 5px 8px; font-size: 12.5px; text-align: right; }

/* ========================================================= LANDING PAGE */
.lp { background: #fff; }
.lp .spark { color: var(--pu-600); font-size: .8em; }

.lp-nav { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.86); backdrop-filter: blur(10px); transition: box-shadow .2s, border-color .2s; border-bottom: 1px solid transparent; }
.lp-nav.stuck { border-bottom-color: var(--line); box-shadow: 0 2px 14px rgba(22,35,59,.06); }
.lp-nav-in { max-width: 1180px; margin: 0 auto; padding: 12px 22px; display: flex; align-items: center; gap: 22px; }
.lp-brand { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.lp-brand .top-logo b { font-size: 21px; }
.lp-links { display: flex; gap: 24px; margin-left: 22px; }
.lp-links a { color: var(--ink-2); font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; }
.lp-links a:hover { color: var(--pu); }
.btn-signin { margin-left: auto; border-radius: 999px; border-color: var(--pu-100); color: var(--pu-700); font-weight: 700; padding: 9px 18px; }
.btn-signin:hover { background: var(--pu-050); border-color: var(--pu); }

.lp-hero { max-width: 1180px; margin: 0 auto; padding: 34px 22px 10px; display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: 34px; align-items: center; }
.lp-eyebrow { display: inline-flex; gap: 7px; align-items: center; background: var(--pu-050); color: var(--pu-700); border-radius: 999px; padding: 7px 16px; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.lp-eyebrow i { opacity: .5; font-style: normal; }
.lp-h1 { font-size: 52px; line-height: 1.04; letter-spacing: -.035em; margin: 18px 0 14px; font-weight: 800; }
.lp-h1 em { font-style: normal; color: var(--pu); }
.lp-sub { font-size: 16px; color: var(--muted); max-width: 44ch; margin-bottom: 22px; }
.lp-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.lp-feats { display: flex; gap: 26px; flex-wrap: wrap; }
.lp-feat { display: flex; gap: 9px; align-items: center; }
.lp-feat-ic { width: 32px; height: 32px; border-radius: 9px; background: var(--pu-050); color: var(--pu); display: grid; place-items: center; font-size: 14px; }
.lp-feat b { display: block; font-size: 13px; }
.lp-feat i { display: block; font-size: 11.5px; color: var(--muted); font-style: normal; }

.lp-hero-art { position: relative; }
.lp-scene { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(#0E1E3C,#1B3E8C); box-shadow: 0 18px 50px rgba(22,35,59,.22); }
/* each scene swap replaces the canvas, so the fade restarts on its own */
@keyframes lpFade { from { opacity: 0; } to { opacity: 1; } }
.lp-scene canvas { width: 100%; height: 100%; display: block; animation: lpFade .65s ease both; }
.lp-scene-tag { position: absolute; left: 14px; bottom: 14px; font-size: 11px; color: rgba(255,255,255,.9); background: rgba(14,30,60,.5); padding: 5px 11px; border-radius: 7px; backdrop-filter: blur(4px); }
.lp-chips { position: absolute; right: -10px; top: 8%; display: flex; flex-direction: column; gap: 9px; }
.lp-chip { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 9px 14px; box-shadow: 0 6px 20px rgba(22,35,59,.12); min-width: 158px; }
.lp-chip-ic { width: 26px; height: 26px; border-radius: 8px; background: var(--pu-050); color: var(--pu); display: grid; place-items: center; font-size: 13px; flex: 0 0 auto; }
.lp-chip-ic.good { background: var(--good-bg); color: var(--good); }
.lp-chip b { display: block; font-size: 13px; font-weight: 750; }
.lp-chip i { display: block; font-size: 11px; color: var(--muted); font-style: normal; }
.lp-dots { position: absolute; left: 14px; top: 14px; display: flex; gap: 6px; }
.lp-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(255,255,255,.42); cursor: pointer; padding: 0; }
.lp-dots button.on { background: #fff; width: 20px; border-radius: 4px; }

.lp-sec { max-width: 1180px; margin: 0 auto; padding: 40px 22px 8px; }
.lp-card-sec > .lp-marquee, .lp-card-sec > .lp-flow, .lp-card-sec > .lp-why { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--sh); }
.lp-h2 { text-align: center; font-size: 24px; letter-spacing: -.02em; margin-bottom: 18px; }
.lp-sec-hd { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.lp-sec-hd .lp-h2 { margin: 0 auto; }
.lp-link { border: 0; background: none; color: var(--pu); font-weight: 650; font-size: 13px; cursor: pointer; }

.lp-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(112px, 1fr)); gap: 12px; }
.lp-type { border: 1px solid rgba(0,0,0,.05); border-radius: 14px; padding: 20px 10px; cursor: pointer; text-align: center; font-size: 12.5px; font-weight: 650; color: var(--ink-2); transition: .16s; }
.lp-type:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(22,35,59,.12); }
.lp-type-ic { display: block; font-size: 24px; margin-bottom: 9px; }

.lp-marquee { overflow: hidden; padding: 16px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.lp-track { display: flex; gap: 12px; width: max-content; animation: lpSlide 46s linear infinite; }
.lp-marquee:hover .lp-track { animation-play-state: paused; }
/* reduced motion: not frozen, just hand-scrollable instead of auto-sliding */
.lp-marquee.still { overflow-x: auto; }
.lp-marquee.still .lp-track { animation: none; }
@keyframes lpSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.lp-style { flex: 0 0 auto; width: 186px; border: 0; padding: 0; background: none; cursor: pointer; border-radius: 13px; overflow: hidden; position: relative; box-shadow: 0 4px 14px rgba(22,35,59,.1); transition: transform .18s; }
.lp-style:hover { transform: translateY(-4px); }
.lp-style-art { display: block; line-height: 0; }
.lp-style-art svg { width: 100%; height: 132px; display: block; }
.lp-style-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 10px; color: #fff; font-size: 13px; font-weight: 700; text-align: left; background: linear-gradient(transparent, rgba(8,20,42,.84)); }
.lp-marquee-hint { text-align: center; font-size: 11.5px; color: var(--faint); margin-top: 10px; }

/* photo cards — real equipment, from ES.GALLERY */
.lp-shot { flex: 0 0 auto; width: 212px; border: 0; padding: 0; background: var(--side); cursor: pointer; border-radius: 13px; overflow: hidden; position: relative; box-shadow: 0 4px 14px rgba(22,35,59,.12); transition: transform .18s; }
.lp-shot:hover { transform: translateY(-4px); }
.lp-shot-img { width: 100%; height: 150px; object-fit: cover; display: block; }
.lp-shot-art { display: block; line-height: 0; }
.lp-shot-art svg { width: 100%; height: 150px; display: block; }
.lp-shot-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 12px 10px; text-align: left; color: #fff; background: linear-gradient(transparent, rgba(8,20,42,.88)); pointer-events: none; }
.lp-shot-cap b { display: block; font-size: 13px; font-weight: 700; line-height: 1.25; }
.lp-shot-cap i { display: block; font-style: normal; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; opacity: .8; margin-top: 3px; }

/* theme entry kept as text — no photo pretends to be a style */
.lp-styleline-hd { text-align: center; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-top: 20px; }
.lp-styleline { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 10px; }
.lp-chipstyle { min-height: 38px; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 15px; font: inherit; font-size: 12.5px; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color .15s, color .15s; }
.lp-chipstyle:hover { border-color: var(--pu); color: var(--pu); }

.lp-flow { display: flex; align-items: stretch; gap: 6px; padding: 18px; overflow-x: auto; }
.lp-step { flex: 0 0 auto; min-width: 128px; border: 1px solid var(--line); border-radius: 13px; padding: 14px 12px; text-align: center; background: #fff; }
.lp-step-ic { display: block; font-size: 17px; color: var(--pu); margin-bottom: 6px; }
.lp-step i { display: block; font-size: 11.5px; color: var(--muted); font-style: normal; }
.lp-step b { display: block; font-size: 16px; font-weight: 800; margin-top: 2px; }
.lp-step u { display: block; font-size: 11px; color: var(--faint); text-decoration: none; }
.lp-arrow { align-self: center; color: var(--faint); font-size: 20px; flex: 0 0 auto; }
.lp-step-pkg { background: var(--pu-050); border-color: var(--pu-100); }
.lp-rec { display: inline-block; margin-top: 6px; font-size: 10px; font-weight: 700; background: #FDF3E3; color: var(--warn); padding: 3px 9px; border-radius: 999px; }
.lp-step-total { background: linear-gradient(135deg, var(--pu), #3B82F6); border: 0; color: #fff; min-width: 168px; }
.lp-step-total i { color: rgba(255,255,255,.85); }
.lp-step-total b { font-size: 26px; }
.lp-total-btn { margin-top: 6px; border: 0; background: rgba(255,255,255,.2); color: #fff; border-radius: 8px; padding: 5px 10px; font-size: 11.5px; font-weight: 650; cursor: pointer; }
.lp-total-btn:hover { background: rgba(255,255,255,.32); }

.lp-diff-wrap { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1fr); gap: 26px; align-items: center; }
.lp-diff { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 2/1; cursor: ew-resize; touch-action: none; box-shadow: var(--sh); user-select: none; }
.lp-diff-before, .lp-diff-after, .lp-diff-after-in { position: absolute; inset: 0; }
.lp-diff-before canvas, .lp-diff-after-in canvas { width: 100%; height: 100%; display: block; }
.lp-diff-after { clip-path: inset(0 0 0 50%); }
.lp-tag { position: absolute; top: 12px; font-size: 10px; font-weight: 800; letter-spacing: .08em; color: #fff; background: rgba(14,30,60,.62); padding: 5px 11px; border-radius: 7px; backdrop-filter: blur(4px); }
.lp-tag-l { left: 12px; }
.lp-tag-r { right: 12px; background: rgba(29,78,216,.85); }
.lp-handle { position: absolute; top: 0; bottom: 0; width: 3px; background: rgba(255,255,255,.9); transform: translateX(-1.5px); pointer-events: none; }
.lp-handle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--pu); display: grid; place-items: center; font-size: 13px; font-weight: 800; box-shadow: 0 4px 14px rgba(0,0,0,.28); }
.lp-diff-copy h3 { font-size: 27px; letter-spacing: -.02em; line-height: 1.16; }
.lp-diff-copy h3 em { font-style: normal; color: var(--pu); }
.lp-diff-copy p { color: var(--muted); font-size: 14px; margin: 10px 0 16px; }

.lp-why { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); padding: 6px; }
.lp-why-item { text-align: center; padding: 20px 14px; border-right: 1px solid var(--line-2); }
.lp-why-item:last-child { border-right: 0; }
.lp-why-ic { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: var(--pu-050); color: var(--pu); font-size: 17px; margin-bottom: 10px; }
.lp-why-item b { display: block; font-size: 13.5px; margin-bottom: 4px; }
.lp-why-item span { display: block; font-size: 12px; color: var(--muted); line-height: 1.45; }

.lp-band { max-width: 1180px; margin: 34px auto 0; padding: 26px 30px; border-radius: 18px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; color: #fff; background: linear-gradient(115deg, #1D4ED8, #2563EB 55%, #7DA6F5); }
.lp-band-art { flex: 0 0 auto; width: 98px; height: 98px; border-radius: 15px; overflow: hidden; box-shadow: 0 6px 18px rgba(6,16,38,.28); }
.lp-band-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-band-art-em { width: auto; height: auto; box-shadow: none; font-size: 44px; }
.lp-band-copy { flex: 1; min-width: 220px; }
.lp-band-copy h2 { font-size: 22px; }
.lp-band-copy p { opacity: .92; margin: 4px 0 0; font-size: 14px; }

.lp-foot { max-width: 1180px; margin: 30px auto 0; padding: 22px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.lp-foot-txt b { display: block; font-size: 13px; }
.lp-foot-txt span { display: block; font-size: 12px; color: var(--muted); }
.lp-foot .btn { margin-left: auto; }

.si-sep { display: flex; align-items: center; gap: 10px; margin: 18px 0 12px; color: var(--faint); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.si-sep::before, .si-sep::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.si-accounts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 8px; }
.si-acct { border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 9px 12px; text-align: left; cursor: pointer; transition: .14s; }
.si-acct:hover { border-color: var(--pu); background: var(--pu-050); }
.si-acct b { display: block; font-size: 12.5px; }
.si-acct span { display: block; font-size: 11px; color: var(--muted); }

@media (max-width: 980px) {
  .lp-hero { grid-template-columns: 1fr; padding-top: 24px; }
  .lp-h1 { font-size: 38px; }
  .lp-chips { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 12px; }
  .lp-chip { min-width: 0; flex: 1 1 46%; }
  .lp-diff-wrap { grid-template-columns: 1fr; }
  .lp-links { display: none; }
  .lp-why-item { border-right: 0; border-bottom: 1px solid var(--line-2); }
}
@media (max-width: 560px) {
  .lp-shot { width: 172px; }
  .lp-shot-img, .lp-shot-art svg { height: 126px; }
  .lp-band-art { width: 74px; height: 74px; }
  .lp-h1 { font-size: 30px; }
  .lp-nav-in { padding: 10px 14px; gap: 10px; }
  .lp-sec { padding: 28px 14px 6px; }
  .lp-band { margin: 24px 14px 0; padding: 20px; }
}
/* no hover to pause with → let the hand do the scrolling */
@media (hover: none) {
  .lp-marquee { overflow-x: auto; }
  .lp-track { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-marquee { overflow-x: auto; }
  .lp-track { animation: none; }
  .lp-scene canvas { animation: none; }
}

/* ======================================================== SIGN-IN PAGE */
.si-page {
  min-height: 100vh; min-height: 100dvh;
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  grid-template-areas: "left right" "foot foot";
  grid-template-rows: 1fr auto;
  background: #fff;
}
.si-page svg { width: 1em; height: 1em; display: block; }

/* ---- left ---- */
.si-left {
  grid-area: left; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #EEF3FE 0%, #F8FBFF 42%, #E9F0FD 100%);
  display: flex; align-items: center; padding: 40px 44px;
}
.si-scene { position: absolute; inset: 0 0 0 30%; }
/* the render is a night scene, so it gets a veil to lift it off pure black */
.si-scene::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.16); pointer-events: none; }
.si-scene canvas { width: 100%; height: 100%; display: block; animation: siFade .9s ease both; }
@keyframes siFade { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: none; } }
.si-scene-wash {
  position: absolute; inset: 0; pointer-events: none;
  /* opaque well past the text column so the copy never sits on dark pixels */
  background: linear-gradient(90deg, #F1F6FE 0%, #F1F6FE 40%, rgba(241,246,254,.94) 54%, rgba(241,246,254,.42) 72%, rgba(241,246,254,0) 90%);
}
.si-left-in { position: relative; z-index: 2; max-width: 440px; }
.si-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; cursor: pointer; }
.si-brand .top-logo b { font-size: 26px; }
.si-brand .spark { color: var(--pu-600); font-size: 18px; }

.si-pill {
  display: inline-flex; gap: 7px; align-items: center; background: rgba(255,255,255,.82);
  border: 1px solid var(--pu-100); color: var(--pu-700); border-radius: 999px;
  padding: 8px 18px; font-size: 11.5px; font-weight: 800; letter-spacing: .09em;
}
.si-pill i { opacity: .5; font-style: normal; }
.si-h1 { font-size: 50px; line-height: 1.05; letter-spacing: -.035em; font-weight: 800; margin: 20px 0 16px; }
.si-h1 em { font-style: normal; color: var(--pu); }
.si-sub { font-size: 15.5px; color: var(--ink-2); line-height: 1.62; margin-bottom: 30px; }

.si-benefits { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.si-benefits li { display: flex; gap: 14px; align-items: flex-start; }
.si-bic {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  font-size: 20px; background: var(--pu-050); color: var(--pu);
}
.si-bic.i-bl { background: var(--blue-bg); color: var(--blue); }
.si-bic.i-gr { background: var(--good-bg); color: var(--good); }
.si-bic.i-or { background: var(--orange-bg); color: var(--orange); }
.si-benefits b { display: block; font-size: 14.5px; }
.si-benefits i { display: block; font-size: 13px; color: var(--muted); font-style: normal; margin-top: 1px; }

/* ---- right ---- */
.si-right {
  grid-area: right; position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px; padding: 64px 40px 40px;
  background: #FBFCFF;
}
.si-back {
  position: absolute; top: 22px; left: 30px; z-index: 4; display: inline-flex; align-items: center; gap: 7px;
  min-height: 40px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--ink); font: inherit; font-size: 13px; font-weight: 650; cursor: pointer;
}
.si-back span { opacity: .7; }
.si-back:hover { border-color: var(--pu); color: var(--pu); }
.si-help {
  position: absolute; top: 22px; right: 30px; display: inline-flex; align-items: center; gap: 7px;
  border: 0; background: none; color: var(--pu); font-size: 13.5px; font-weight: 650; cursor: pointer;
}
.si-help svg { font-size: 17px; }
.si-help { min-height: 40px; padding: 0 4px; }
.si-help:hover { color: var(--pu-700); text-decoration: underline; }

.si-card {
  width: min(520px, 100%); background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 30px 34px 26px; box-shadow: 0 12px 44px rgba(22,35,59,.09);
}
.si-lock {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center;
  background: var(--pu-050); color: var(--pu); font-size: 30px;
}
.si-card h2 { text-align: center; font-size: 27px; letter-spacing: -.02em; }
.si-card-sub { text-align: center; color: var(--muted); font-size: 14px; margin: 5px 0 22px; }

.si-lbl { display: block; font-size: 13px; font-weight: 650; color: var(--ink-2); margin-bottom: 7px; }
.si-input { position: relative; margin-bottom: 15px; }
.si-in-ic {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--faint); font-size: 19px; pointer-events: none; transition: color .16s;
}
.si-input input {
  width: 100%; padding: 14px 14px 14px 46px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; font-size: 14.5px; background: #fff; color: var(--ink); transition: border-color .16s, box-shadow .16s;
}
.si-input input::placeholder { color: #A9B8CF; }
.si-input input:focus { outline: none; border-color: var(--pu); box-shadow: 0 0 0 4px var(--pu-050); }
.si-input input:focus + .si-eye, .si-input input:focus ~ .si-eye { color: var(--pu); }
.si-input:focus-within .si-in-ic { color: var(--pu); }
.si-eye {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%); border: 0; background: none;
  color: var(--faint); font-size: 19px; cursor: pointer; border-radius: 9px; transition: .14s;
  /* 40px box so it is a real touch target, not just an icon */
  width: 40px; height: 40px; display: grid; place-items: center;
}
.si-eye:hover { color: var(--pu); background: var(--pu-050); }

.si-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 4px 0 18px; flex-wrap: wrap; }
/* the whole label is the tap target, so the 21px box is only the visual */
.si-check { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; cursor: pointer; user-select: none; min-height: 40px; }
.si-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.si-box {
  width: 21px; height: 21px; border-radius: 6px; border: 1.6px solid var(--line);
  display: grid; place-items: center; color: transparent; transition: .16s; flex: 0 0 auto;
}
.si-box svg { width: 13px; height: 13px; }
.si-check input:checked + .si-box { background: var(--pu); border-color: var(--pu); color: #fff; }
.si-check input:focus-visible + .si-box { box-shadow: 0 0 0 4px var(--pu-050); }
.si-forgot { border: 0; background: none; color: var(--pu); font-size: 13.5px; font-weight: 650; cursor: pointer; padding: 8px 0; min-height: 38px; }
.si-forgot:hover { text-decoration: underline; }

.si-err {
  display: none; background: var(--bad-bg); border: 1px solid #F5D5D5; color: #8E1E1E;
  border-radius: 10px; padding: 9px 12px; font-size: 13px; margin-bottom: 14px;
}
.si-err.on { display: block; animation: siErrIn .22s ease-out; }
@keyframes siErrIn { from { opacity: 0; transform: translateY(-4px); } }

.si-submit {
  position: relative; width: 100%; border: 0; border-radius: 13px; padding: 16px 20px; cursor: pointer;
  color: #fff; font-size: 15.5px; font-weight: 700; letter-spacing: .01em;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(100deg, #2563EB, #1D4ED8 52%, #3B82F6);
  box-shadow: 0 8px 22px rgba(29,78,216,.32); transition: transform .14s, box-shadow .18s, filter .16s;
}
.si-submit:hover { filter: brightness(1.06); box-shadow: 0 12px 28px rgba(29,78,216,.4); }
.si-submit:active { transform: translateY(1px); }
.si-submit svg { font-size: 19px; transition: transform .2s; }
.si-submit:hover svg { transform: translateX(4px); }
.si-submit.loading { pointer-events: none; filter: saturate(.85); }
.si-submit.loading .si-submit-txt, .si-submit.loading .si-submit-ic { opacity: 0; }
.si-spin { display: none; }
.si-submit.loading .si-spin {
  display: block; position: absolute; width: 21px; height: 21px; border-radius: 50%;
  border: 2.4px solid rgba(255,255,255,.35); border-top-color: #fff; animation: siSpin .7s linear infinite;
}
@keyframes siSpin { to { transform: rotate(360deg); } }

.si-or { display: flex; align-items: center; gap: 12px; margin: 20px 0 16px; }
.si-or::before, .si-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.si-or span { color: var(--muted); font-size: 13px; }

.si-trust { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2px; background: #F8FAFE; border: 1px solid var(--line-2); border-radius: 13px; overflow: hidden; }
.si-trust-i { padding: 13px 11px; text-align: left; border-right: 1px solid var(--line-2); }
.si-trust-i:last-child { border-right: 0; }
.si-trust-i > span { display: block; color: var(--pu); font-size: 17px; margin-bottom: 6px; }
.si-trust-i b { display: block; font-size: 12.5px; }
.si-trust-i i { display: block; font-size: 11px; color: var(--muted); font-style: normal; }

.si-demo { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); }
.si-demo-hd { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 9px; }
.si-demo-row { display: flex; gap: 7px; flex-wrap: wrap; }
.si-demo-btn {
  border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 0 15px;
  min-height: 38px; display: inline-flex; align-items: center;
  font-size: 12.5px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: .14s;
}
.si-demo-btn:hover { border-color: var(--pu); background: var(--pu-050); color: var(--pu-700); }

.si-new { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; font-size: 14px; color: var(--ink-2); }
.si-new-btn {
  display: inline-flex; align-items: center; gap: 9px; border: 1.5px solid var(--pu-100);
  background: #fff; color: var(--pu-700); border-radius: 12px; padding: 12px 20px;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: .16s;
}
.si-new-btn:hover { border-color: var(--pu); background: var(--pu-050); }
.si-new-btn svg { font-size: 17px; transition: transform .2s; }
.si-new-btn:hover svg { transform: translateX(4px); }

/* ---- footer ---- */
.si-foot {
  grid-area: foot; border-top: 1px solid var(--line); background: #fff;
  padding: 18px 44px; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.si-foot-l { display: inline-flex; gap: 11px; align-items: flex-start; }
.si-foot-l > svg { color: var(--pu); font-size: 22px; flex: 0 0 auto; margin-top: 1px; }
.si-foot-l b { display: block; font-size: 13px; }
.si-foot-l i { display: block; font-size: 12px; color: var(--muted); font-style: normal; }
.si-foot-r { font-size: 12px; color: var(--muted); text-align: right; }

/* ---- entrance animation ---- */
.anim { animation: siUp .55s cubic-bezier(.22,.9,.3,1) both; animation-delay: var(--d, 0s); }
@keyframes siUp { from { opacity: 0; transform: translateY(16px); } }
.anim-card { animation: siCard .6s cubic-bezier(.22,.9,.3,1) both; animation-delay: .1s; }
@keyframes siCard { from { opacity: 0; transform: translateY(22px) scale(.985); } }
.shake { animation: siShake .42s cubic-bezier(.36,.07,.19,.97) both; }
@keyframes siShake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-7px); }
  40%, 60% { transform: translateX(7px); }
}

/* ---- responsive ---- */
@media (max-width: 1080px) {
  .si-h1 { font-size: 40px; }
  .si-left { padding: 34px 30px; }
  .si-right { padding: 60px 26px 32px; }
  .si-card { padding: 26px 24px 22px; }
}
@media (max-width: 900px) {
  /* stack, and put the form first — that is what someone came here to do */
  .si-page { grid-template-columns: minmax(0,1fr); grid-template-areas: "right" "left" "foot"; grid-template-rows: auto auto auto; }
  .si-right { padding: 58px 20px 30px; }
  .si-left { padding: 30px 20px 36px; }
  .si-left-in { max-width: none; }
  .si-scene { inset: 0; opacity: .5; }
  .si-scene-wash { background: linear-gradient(180deg, rgba(241,246,254,.94), rgba(241,246,254,.86) 55%, rgba(241,246,254,.97)); }
  .si-h1 { font-size: 34px; }
  .si-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px 22px; }
  .si-foot { padding: 16px 20px; }
  .si-foot-r { text-align: left; }
}
@media (max-width: 560px) {
  .si-h1 { font-size: 28px; }
  .si-sub { font-size: 14.5px; margin-bottom: 24px; }
  .si-card { padding: 22px 18px 20px; border-radius: 16px; }
  .si-card h2 { font-size: 23px; }
  .si-lock { width: 56px; height: 56px; font-size: 26px; }
  .si-help { top: 16px; right: 16px; font-size: 12.5px; }
  .si-back { top: 16px; left: 16px; font-size: 12.5px; padding: 0 12px; }
  .si-right { padding: 52px 14px 26px; }
  .si-left { padding: 26px 14px 30px; }
  .si-trust { grid-template-columns: 1fr; }
  .si-trust-i { border-right: 0; border-bottom: 1px solid var(--line-2); display: flex; align-items: center; gap: 10px; }
  .si-trust-i:last-child { border-bottom: 0; }
  .si-trust-i > span { margin-bottom: 0; }
  .si-trust-i b { flex: 0 0 auto; }
  .si-trust-i i { margin-left: auto; }
  /* the row itself has to stretch, or width:100% on the button is circular */
  .si-new { flex-direction: column; gap: 10px; width: 100%; align-self: stretch; }
  .si-new-btn { width: 100%; justify-content: center; }
  .si-brand { margin-bottom: 22px; }
  .si-brand .top-logo b { font-size: 21px; }
}
/* short viewports — never trap the form off-screen */
@media (max-height: 620px) and (min-width: 901px) {
  .si-page { min-height: 0; }
  .si-right { padding-top: 54px; padding-bottom: 28px; }
  .si-left { padding-top: 28px; padding-bottom: 28px; }
  .si-h1 { font-size: 34px; }
  .si-benefits { gap: 11px; }
  .si-bic { width: 36px; height: 36px; font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .anim, .anim-card, .shake, .si-scene canvas { animation: none; }
  .si-submit:hover svg, .si-new-btn:hover svg { transform: none; }
}

/* ===================================================== 7-STEP WIZARD */
.wz { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg); }
.wz-top {
  background: #fff; border-bottom: 1px solid var(--line); display: flex; align-items: center;
  gap: 20px; padding: 12px 22px; position: sticky; top: 0; z-index: 30; flex-wrap: wrap;
}
.wz-brand { display: flex; align-items: center; gap: 10px; cursor: pointer; flex: 0 0 auto; }
.wz-brand .top-logo b { font-size: 21px; }
.wz-steps { display: flex; list-style: none; margin: 0; padding: 0; gap: 0; flex: 1; justify-content: center; min-width: 0; overflow-x: auto; }
.wz-steps li { display: flex; flex-direction: column; align-items: center; gap: 5px; position: relative; padding: 0 14px; flex: 0 0 auto; }
.wz-steps li::before {
  content: ""; position: absolute; top: 14px; left: -50%; width: 100%; height: 2px; background: var(--line);
}
.wz-steps li:first-child::before { display: none; }
.wz-steps li.done::before, .wz-steps li.on::before { background: var(--pu); }
.wz-dot {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--line); background: #fff;
  color: var(--faint); font-size: 12px; font-weight: 700; cursor: pointer; display: grid; place-items: center;
  position: relative; z-index: 1; transition: .16s;
}
.wz-dot[disabled] { cursor: default; }
.wz-steps li.done .wz-dot { background: var(--pu); border-color: var(--pu); color: #fff; }
.wz-steps li.on .wz-dot { background: var(--pu); border-color: var(--pu); color: #fff; box-shadow: 0 0 0 4px var(--pu-050); }
.wz-steps li span { font-size: 11.5px; color: var(--muted); white-space: nowrap; }
.wz-steps li.on span { color: var(--ink); font-weight: 700; }
.wz-top-act { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }

.wz-body { flex: 1; display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 18px; padding: 18px 22px 0; max-width: 1560px; margin: 0 auto; width: 100%; }
.wz-body.wz-wide { grid-template-columns: 300px minmax(0, 1fr); }
.wz-side { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; align-self: start; position: sticky; top: 84px; }
.wz-hero { line-height: 0; }
.wz-hero svg { width: 100%; height: 150px; display: block; }
.wz-side-in { padding: 16px; }
.wz-side-hd b { display: block; font-size: 14px; }
.wz-side-hd span { display: block; font-size: 12.5px; color: var(--muted); margin: 3px 0 14px; }
.wz-sum-hd { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.wz-sum-row { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; }
.wz-sum-ic { width: 26px; height: 26px; border-radius: 8px; background: var(--pu-050); color: var(--pu); display: grid; place-items: center; font-size: 12px; flex: 0 0 auto; }
.wz-sum-row i { display: block; font-size: 11.5px; color: var(--muted); font-style: normal; }
.wz-sum-row b { display: block; font-size: 13px; }
.wz-side-steps { list-style: none; margin: 14px 0; padding: 0; }
.wz-side-steps li { display: flex; gap: 10px; align-items: center; padding: 9px 10px; border-radius: 10px; }
.wz-side-steps li.on { background: var(--pu-050); }
.wz-ss-n { width: 24px; height: 24px; border-radius: 50%; background: var(--line-2); color: var(--muted); display: grid; place-items: center; font-size: 11.5px; font-weight: 700; flex: 0 0 auto; }
.wz-side-steps li.done .wz-ss-n { background: var(--good-bg); color: var(--good); }
.wz-side-steps li.on .wz-ss-n { background: var(--pu); color: #fff; }
.wz-side-steps b { display: block; font-size: 13px; }
.wz-side-steps i { display: block; font-size: 11.5px; color: var(--muted); font-style: normal; }
.wz-help { background: var(--pu-050); border-radius: 12px; padding: 14px; text-align: left; }
.wz-help-ic { font-size: 20px; margin-bottom: 6px; }
.wz-help b { display: block; font-size: 13.5px; }
.wz-help span { display: block; font-size: 12px; color: var(--muted); margin: 3px 0 10px; }

.wz-main { min-width: 0; padding-bottom: 20px; }
.wz-h1-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.wz-h1 { font-size: 32px; letter-spacing: -.025em; }
.wz-h1-sub { color: var(--muted); font-size: 14.5px; margin: 6px 0 0; max-width: 60ch; }
.wz-tip { background: var(--pu-050); border: 1px solid var(--pu-100); color: var(--pu-700); border-radius: 12px; padding: 12px 16px; font-size: 13px; }

.wz-num-row { display: flex; align-items: center; gap: 11px; margin: 24px 0 12px; flex-wrap: wrap; }
.wz-num-row.in-card { margin: 0 0 14px; }
.wz-num { width: 26px; height: 26px; border-radius: 50%; background: var(--pu); color: #fff; display: grid; place-items: center; font-size: 12.5px; font-weight: 700; flex: 0 0 auto; }
.wz-num-t b { font-size: 15.5px; }
.wz-num-t i { display: block; font-size: 12.5px; color: var(--muted); font-style: normal; }
.wz-num-row > .lp-link, .wz-num-row > button:last-child:not(.wz-num) { margin-left: auto; }

.wz-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 10px; }
.wz-tiles-sm { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.wz-tile {
  position: relative; border: 1.5px solid var(--line); background: var(--tint, #fff); border-radius: 14px;
  padding: 18px 10px; cursor: pointer; text-align: center; font-size: 12.5px; font-weight: 650;
  color: var(--ink-2); transition: .16s;
}
.wz-tile:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(22,35,59,.1); }
.wz-tile.on { border-color: var(--pu); box-shadow: 0 0 0 3px var(--pu-050); }
.wz-tile-ic { display: block; font-size: 24px; margin-bottom: 8px; }
.wz-check { position: absolute; top: 7px; right: 7px; width: 20px; height: 20px; border-radius: 50%; background: var(--pu); color: #fff; font-size: 11px; font-style: normal; display: grid; place-items: center; }

.wz-field { position: relative; }
.wz-field .wz-fic { position: absolute; left: 13px; top: 15px; color: var(--faint); font-size: 15px; pointer-events: none; }
.wz-field .input { padding-left: 40px; padding-top: 13px; padding-bottom: 13px; border-radius: 11px; }
.wz-field small { display: block; font-size: 11.5px; color: var(--faint); margin: 4px 0 0 4px; }

.wz-vtypes { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.wz-vtype { border: 1.5px solid var(--line); background: #fff; border-radius: 12px; padding: 14px 10px; cursor: pointer; font-size: 13px; font-weight: 650; display: flex; align-items: center; justify-content: center; gap: 8px; transition: .16s; }
.wz-vtype:hover { border-color: var(--pu-100); }
.wz-vtype.on { border-color: var(--pu); background: var(--pu-050); color: var(--pu-700); }

.wz-guests { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.wz-gbtn { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line); background: #fff; font-size: 19px; cursor: pointer; }
.wz-guests .input { width: 96px; text-align: center; font-size: 19px; font-weight: 800; padding: 9px; }

/* style + palette */
.wz-styles { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.wz-style { position: relative; border: 2px solid transparent; border-radius: 14px; overflow: hidden; padding: 0; background: #fff; cursor: pointer; box-shadow: 0 3px 12px rgba(22,35,59,.09); transition: .16s; }
.wz-style:hover { transform: translateY(-3px); }
.wz-style.on { border-color: var(--pu); }
.wz-style-art { display: block; line-height: 0; }
.wz-style-art svg { width: 100%; height: 108px; display: block; }
.wz-style-lbl { display: block; padding: 9px 8px; font-size: 12.5px; font-weight: 650; }
.wz-style-more { display: grid; place-items: center; gap: 6px; border: 1.5px dashed var(--line); box-shadow: none; color: var(--muted); font-size: 12.5px; font-weight: 650; min-height: 150px; }
.wz-style-more span { font-size: 22px; }

.wz-pals { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.wz-pal { position: relative; border: 1.5px solid var(--line); background: #fff; border-radius: 12px; padding: 12px; cursor: pointer; font-size: 12.5px; font-weight: 650; transition: .16s; }
.wz-pal.on { border-color: var(--pu); box-shadow: 0 0 0 3px var(--pu-050); }
.wz-pal-sw { display: flex; gap: 4px; margin-bottom: 9px; }
.wz-pal-sw i { flex: 1; height: 30px; border-radius: 7px; border: 1px solid rgba(0,0,0,.06); }
.wz-pal-wheel { display: block; height: 30px; width: 30px; margin: 0 auto 9px; border-radius: 50%;
  background: conic-gradient(#EF4444,#F59E0B,#EAB308,#22C55E,#06B6D4,#3B82F6,#8B5CF6,#EC4899,#EF4444); }

.wz-prios { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 9px; }
.wz-prio { position: relative; border: 1.5px solid var(--line); background: #fff; border-radius: 12px; padding: 14px 12px; cursor: pointer; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 9px; transition: .16s; text-align: left; }
.wz-prio:hover { border-color: var(--pu-100); }
.wz-prio.on { border-color: var(--pu); background: var(--pu-050); color: var(--pu-700); }
.wz-prio > span:first-child { font-size: 16px; }

/* vision */
.wz-vision { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--sh); }
.wz-vision-main { aspect-ratio: 16/8; background: linear-gradient(#0E1E3C,#1B3E8C); }
.wz-vision-main canvas { width: 100%; height: 100%; display: block; }
.wz-vision-badges { position: absolute; top: 12px; right: 12px; display: flex; gap: 6px; }
.wz-hd { background: rgba(255,255,255,.9); border-radius: 7px; padding: 4px 9px; font-size: 11px; font-weight: 700; }
.wz-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; }
.wz-thumb { flex: 0 0 auto; width: 96px; border: 2px solid transparent; border-radius: 10px; overflow: hidden; background: #fff; padding: 0 0 5px; cursor: pointer; font-size: 10.5px; color: var(--muted); box-shadow: 0 2px 8px rgba(22,35,59,.08); }
.wz-thumb.on { border-color: var(--pu); color: var(--pu-700); font-weight: 650; }
.wz-thumb-art { display: block; height: 54px; background: linear-gradient(#0E1E3C,#1B3E8C); line-height: 0; }
.wz-thumb-art canvas { width: 100%; height: 100%; display: block; }
.wz-thumb-more { display: grid; place-items: center; min-height: 78px; border: 1.5px dashed var(--line); }
.wz-thumb-more b { font-size: 17px; color: var(--ink); }

.wz-gets { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.wz-get { display: flex; gap: 10px; align-items: flex-start; }
.wz-get-ic { width: 34px; height: 34px; border-radius: 10px; background: var(--pu-050); color: var(--pu); display: grid; place-items: center; font-size: 15px; flex: 0 0 auto; }
.wz-get b { display: block; font-size: 13px; }
.wz-get i { display: block; font-size: 12px; color: var(--muted); font-style: normal; }

.wz-lock-note { display: flex; align-items: center; gap: 12px; background: var(--pu-050); border: 1px solid var(--pu-100); border-radius: 14px; padding: 16px; margin-top: 16px; }
.wz-lock-ic { font-size: 18px; }
.wz-lock-note b { display: block; font-size: 13.5px; color: var(--pu-700); }
.wz-lock-note i { display: block; font-size: 12.5px; color: var(--muted); font-style: normal; }
.wz-lock-r { margin-left: auto; font-size: 20px; opacity: .5; }

/* packages */
.wz-pkgs { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 14px; align-items: start; }
.wz-pkg { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: .16s; }
.wz-pkg.pop { border-color: var(--pu); box-shadow: 0 10px 30px rgba(29,78,216,.14); }
.wz-pkg.on { border-color: var(--pu); box-shadow: 0 0 0 3px var(--pu-050); }
.wz-pkg-pop { background: var(--pu); color: #fff; text-align: center; font-size: 11px; font-weight: 800; letter-spacing: .06em; padding: 6px; }
.wz-pkg-pop.static { border-radius: 999px; display: inline-block; padding: 5px 12px; margin-bottom: 10px; }
.wz-pkg-art { line-height: 0; }
.wz-pkg-art svg { width: 100%; height: 132px; display: block; }
.wz-pkg-badge { position: absolute; left: 50%; transform: translateX(-50%); margin-top: -22px; width: 60px; height: 60px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 800; color: var(--pu); box-shadow: 0 3px 12px rgba(22,35,59,.16); }
.wz-pkg-body { padding: 30px 18px 14px; flex: 1; text-align: center; }
.wz-pkg-body h3 { font-size: 16px; }
.wz-pkg-body p { font-size: 12.5px; color: var(--muted); margin: 4px 0 12px; }
.wz-pkg-price { font-size: 30px; font-weight: 800; letter-spacing: -.02em; color: var(--pu); }
.wz-pkg-est { font-size: 11.5px; color: var(--muted); margin-bottom: 12px; }
.wz-pkg-est small { display: block; }
.wz-pkg-prev { font-size: 12px; font-weight: 700; color: var(--pu-700); text-align: left; margin-bottom: 6px; }
.wz-pkg-list { list-style: none; margin: 0; padding: 0; text-align: left; }
.wz-pkg-list li { display: flex; gap: 8px; padding: 4px 0; font-size: 12.5px; align-items: flex-start; }
.wz-pkg-list li span { color: var(--pu); flex: 0 0 auto; }
.wz-pkg-list li i { color: var(--muted); font-style: normal; }
.wz-pkg-foot { padding: 0 18px 18px; }

.wz-custom { display: flex; align-items: center; gap: 14px; width: 100%; background: var(--pu-050); border: 1px solid var(--pu-100); border-radius: 14px; padding: 16px; margin-top: 16px; cursor: pointer; text-align: left; }
.wz-custom-ic { width: 36px; height: 36px; border-radius: 10px; background: #fff; color: var(--pu); display: grid; place-items: center; flex: 0 0 auto; }
.wz-custom b { display: block; font-size: 13.5px; }
.wz-custom i { display: block; font-size: 12.5px; color: var(--muted); font-style: normal; }
.wz-custom-x { margin-left: auto; font-size: 22px; color: var(--pu); }

/* review */
.wz-avail { background: var(--good-bg); border: 1px solid #C9EBD6; border-radius: 12px; padding: 11px 16px; }
.wz-avail.warn { background: var(--warn-bg); border-color: #F6E2BE; }
.wz-avail b { display: block; font-size: 13px; color: var(--good); }
.wz-avail.warn b { color: var(--warn); }
.wz-avail i { display: block; font-size: 12px; color: var(--muted); font-style: normal; }

.wz-review { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr) minmax(0,.95fr); gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--sh); }
.wz-rev-art { line-height: 0; }
.wz-rev-art > svg { width: 100%; height: 200px; display: block; }
.wz-rev-art-row { display: grid; grid-template-columns: 1fr 1fr; }
.wz-rev-art-row svg { width: 100%; height: 118px; display: block; }
.wz-rev-pkg { padding: 20px; background: linear-gradient(#fff, #FAFCFF); border-left: 1px solid var(--line-2); }
.wz-rev-pkg h2 { font-size: 26px; color: var(--pu); letter-spacing: -.02em; }
.wz-rev-pkg p { font-size: 13px; color: var(--muted); margin: 2px 0 10px; }
.wz-rev-lock { padding: 20px; text-align: center; background: linear-gradient(#FAFCFF, #EFF4FE); border-left: 1px solid var(--line-2); }
.wz-lock-badge { width: 54px; height: 54px; border-radius: 50%; background: var(--pu-050); color: var(--pu); display: grid; place-items: center; font-size: 24px; margin: 0 auto 12px; }
.wz-rev-lock h3 { font-size: 17px; letter-spacing: -.01em; color: var(--pu-700); }
.wz-lock-tag { font-size: 12px; color: var(--pu); font-weight: 700; margin: 8px 0; }
.wz-rev-lock p { font-size: 12.5px; color: var(--muted); }
.wz-lock-art { position: relative; height: 92px; border-radius: 10px; overflow: hidden; margin: 12px 0 8px; background: #E4ECFB; display: grid; place-items: center; }
.wz-lock-deco { position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(29,78,216,.16) 0 12px, transparent 13px),
                    radial-gradient(circle at 55% 65%, rgba(59,130,246,.18) 0 14px, transparent 15px),
                    radial-gradient(circle at 80% 25%, rgba(147,197,253,.20) 0 12px, transparent 13px); }
.wz-lock-art span { position: relative; width: 42px; height: 42px; border-radius: 50%; background: rgba(22,35,59,.82); color: #fff; display: grid; place-items: center; font-size: 18px; }
.wz-lock-feat { font-size: 11px; color: var(--faint); }

.wz-preview-note { display: flex; align-items: center; gap: 14px; background: var(--pu-050); border: 1px solid var(--pu-100); border-radius: 14px; padding: 16px; margin-top: 14px; flex-wrap: wrap; }
.wz-preview-note b { display: block; font-size: 13.5px; color: var(--pu-700); }
.wz-preview-note i { display: block; font-size: 12.5px; color: var(--muted); font-style: normal; }
.wz-preview-total { margin-left: auto; text-align: right; }
.wz-preview-total i { font-size: 11.5px; color: var(--muted); font-style: normal; }
.wz-preview-total b { display: block; font-size: 24px; font-weight: 800; color: var(--pu); }
.wz-preview-total u { font-size: 11px; color: var(--faint); text-decoration: none; }

/* contact / deposit */
.wz-sec { padding: 18px; margin-bottom: 14px; }
.wz-count { text-align: right; font-size: 11.5px; color: var(--faint); margin-top: 4px; }
.wz-phone { display: flex; gap: 6px; }
.wz-phone > span { display: grid; place-items: center; padding: 0 10px; border: 1px solid var(--line); border-radius: 9px; font-size: 13px; background: #fff; }
.wz-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; background: var(--pu-050); border: 1px solid var(--pu-100); border-radius: 14px; padding: 16px; }
.wz-trust-i > span { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: #fff; color: var(--pu); margin-bottom: 7px; }
.wz-trust-i b { display: block; font-size: 12.5px; color: var(--pu-700); }
.wz-trust-i i { display: block; font-size: 11.5px; color: var(--muted); font-style: normal; }

.wz-hold { display: flex; align-items: center; gap: 14px; background: var(--pu-050); border: 1px solid var(--pu-100); border-radius: 14px; padding: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.wz-hold-ic { width: 36px; height: 36px; border-radius: 10px; background: #fff; color: var(--pu); display: grid; place-items: center; }
.wz-hold b { font-size: 13.5px; }
.wz-hold i { display: block; font-size: 12.5px; color: var(--muted); font-style: normal; }
.wz-hold-t { margin-left: auto; text-align: right; }
.wz-hold-t b { display: block; font-size: 22px; font-weight: 800; color: var(--pu); font-variant-numeric: tabular-nums; }
.wz-dep { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.wz-dep i { font-size: 12px; color: var(--muted); font-style: normal; }
.wz-dep b { display: block; font-size: 24px; font-weight: 800; }
.wz-dep .right { text-align: right; }
.wz-dep .right b { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.wz-paym { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 10px; margin-top: 14px; }
.wz-pay { display: flex; gap: 10px; align-items: center; border: 1.5px solid var(--line); background: #fff; border-radius: 12px; padding: 13px; cursor: pointer; text-align: left; }
.wz-pay.on { border-color: var(--pu); background: var(--pu-050); }
.wz-radio { width: 18px; height: 18px; border-radius: 50%; border: 1.6px solid var(--line); display: grid; place-items: center; font-size: 10px; color: var(--pu); flex: 0 0 auto; }
.wz-pay.on .wz-radio { border-color: var(--pu); }
.wz-pay b { display: block; font-size: 13px; }
.wz-pay i { display: block; font-size: 11.5px; color: var(--muted); font-style: normal; }

/* confirmation */
.wz-done { position: relative; text-align: center; padding: 20px 0 40px; }
.wz-done h1 { font-size: 38px; letter-spacing: -.03em; margin: 14px 0 10px; }
.wz-done > p { color: var(--muted); font-size: 15px; }
.wz-done-tick { width: 92px; height: 92px; border-radius: 50%; background: var(--pu-050); color: var(--pu); display: grid; place-items: center; font-size: 44px; margin: 0 auto; animation: siCard .6s cubic-bezier(.22,.9,.3,1) both; }
.wz-confetti { position: absolute; inset: -10px 0 auto; height: 260px; overflow: hidden; pointer-events: none; }
.wz-confetti i { position: absolute; top: -14px; width: 8px; height: 12px; border-radius: 2px; animation: wzFall 2.6s ease-in forwards; }
@keyframes wzFall { to { transform: translateY(280px) rotate(420deg); opacity: 0; } }
.wz-done-card { display: flex; align-items: center; gap: 14px; text-align: left; background: var(--good-bg); border: 1px solid #C9EBD6; border-radius: 14px; padding: 16px; margin: 22px auto 0; max-width: 720px; flex-wrap: wrap; }
.wz-done-ic { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--good); display: grid; place-items: center; font-size: 19px; }
.wz-done-card b { display: block; font-size: 14px; color: #10693B; }
.wz-done-card i { display: block; font-size: 12.5px; color: var(--muted); font-style: normal; }
.wz-done-card .btn { margin-left: auto; }
.wz-next { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; align-items: start; text-align: center; }
.wz-next-i { text-align: center; }
.wz-next-ic { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--pu-050); color: var(--pu); font-size: 22px; margin-bottom: 10px; }
.wz-next-i b { display: block; font-size: 13.5px; }
.wz-next-i i { display: block; font-size: 12px; color: var(--muted); font-style: normal; margin-top: 4px; }
.wz-next-dots { display: none; }
.wz-done-pay { max-width: 720px; margin: 16px auto 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; text-align: left; }
.wz-done-pay > div { display: flex; justify-content: space-between; padding: 5px 0; font-size: 13.5px; }
.wz-done-pay i { color: var(--muted); font-style: normal; }
.wz-thanks { display: flex; align-items: center; gap: 14px; text-align: left; background: var(--pu-050); border-radius: 14px; padding: 18px; margin: 16px auto 0; max-width: 720px; }
.wz-thanks > span:first-child { font-size: 26px; }
.wz-thanks b { display: block; font-size: 14px; }
.wz-thanks i { display: block; font-size: 12.5px; color: var(--muted); font-style: normal; }
.wz-thanks-sig { margin-left: auto; font-size: 20px; color: var(--pu); font-style: italic; }

.wz-foot {
  position: sticky; bottom: 0; background: #fff; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 18px; padding: 12px 22px; z-index: 20; flex-wrap: wrap;
}
.wz-prog { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 180px; justify-content: center; }
.wz-prog span { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.wz-bar { flex: 1; max-width: 420px; height: 8px; border-radius: 5px; background: var(--line-2); overflow: hidden; }
.wz-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--pu), #3B82F6); border-radius: 5px; transition: width .35s; }
.wz-prog b { font-size: 12.5px; color: var(--muted); }

/* ===================================================== BOOKED PORTAL */
.pt { min-height: 100vh; background: var(--bg); }
.pt-top { background: #fff; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 18px; padding: 12px 22px; position: sticky; top: 0; z-index: 30; flex-wrap: wrap; }
.pt-brand { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.pt-brand .top-logo b { font-size: 20px; }
.pt-brand i { display: block; font-size: 10.5px; color: var(--muted); font-style: normal; }
.pt-title { flex: 1; min-width: 0; }
.pt-title b { display: block; font-size: 17px; }
.pt-title i { display: block; font-size: 12.5px; color: var(--muted); font-style: normal; }
.pt-top-act { display: flex; align-items: center; gap: 10px; }
.pt-bell { position: relative; font-size: 17px; }
.pt-bell i { position: absolute; top: -2px; right: -3px; color: var(--bad); font-size: 18px; font-style: normal; }
.pt-user { display: flex; align-items: center; gap: 9px; }
.pt-av { width: 34px; height: 34px; border-radius: 50%; background: var(--pu); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; flex: 0 0 auto; }
.pt-av.lg { width: 44px; height: 44px; font-size: 17px; }
.pt-av.sm { width: 28px; height: 28px; font-size: 12px; background: var(--pu-050); color: var(--pu); }
.pt-user b { display: block; font-size: 13px; }
.pt-user i { display: block; font-size: 11.5px; color: var(--muted); font-style: normal; }

.pt-body { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 18px; padding: 18px 22px 40px; max-width: 1640px; margin: 0 auto; }
.pt-side { align-self: start; position: sticky; top: 84px; }
.pt-date { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; margin-bottom: 12px; }
.pt-date-ic { width: 38px; height: 38px; border-radius: 11px; background: var(--pu-050); color: var(--pu); display: grid; place-items: center; }
.pt-date i { display: block; font-size: 11.5px; color: var(--muted); font-style: normal; }
.pt-date b { display: block; font-size: 14px; }
.pt-date u { display: block; font-size: 11.5px; color: var(--muted); text-decoration: none; }
.pt-days { grid-column: 1/-1; background: var(--pu-050); color: var(--pu-700); border-radius: 999px; padding: 5px 12px; font-size: 11.5px; font-weight: 700; text-align: center; }
.pt-nav { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 8px; }
.pt-nav a { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; font-size: 13.5px; color: var(--ink-2); cursor: pointer; text-decoration: none; }
.pt-nav a:hover { background: var(--pu-050); }
.pt-nav a.on { background: var(--pu-050); color: var(--pu-700); font-weight: 700; }
.pt-badge { margin-left: auto; background: var(--pu); color: #fff; border-radius: 999px; min-width: 20px; text-align: center; font-size: 11px; font-style: normal; padding: 1px 6px; }
.pt-lock { margin-left: auto; background: var(--line-2); color: var(--muted); border-radius: 6px; font-size: 10.5px; font-style: normal; padding: 2px 7px; }
.pt-help { margin-top: 12px; }

.pt-main { min-width: 0; }
.pt-grid, .pt-studio { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 16px; align-items: start; }
.pt-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.pt-hello h1 { font-size: 27px; letter-spacing: -.025em; }
.pt-hello p { color: var(--muted); font-size: 14px; margin: 4px 0 0; }

.pt-evcard { display: grid; grid-template-columns: 190px minmax(0,1fr) auto; gap: 16px; padding: 14px; align-items: center; }
.pt-evart { line-height: 0; border-radius: 12px; overflow: hidden; }
.pt-evart svg { width: 100%; height: 118px; display: block; }
.pt-evinfo h2 { font-size: 20px; }
.pt-evmeta { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.pt-evtotal { text-align: right; padding-left: 16px; border-left: 1px solid var(--line-2); }
.pt-evtotal i { font-size: 11.5px; color: var(--muted); font-style: normal; }
.pt-evtotal b { display: block; font-size: 24px; font-weight: 800; }
.pt-evtotal u { display: block; font-size: 11.5px; color: var(--muted); text-decoration: none; margin-top: 4px; }
.pt-evtotal u.ok { color: var(--good); }

.pt-prog { list-style: none; margin: 0; padding: 0; display: flex; gap: 0; overflow-x: auto; }
.pt-prog li { flex: 1 0 110px; text-align: center; position: relative; }
.pt-prog li::before { content: ""; position: absolute; top: 15px; left: -50%; width: 100%; height: 2px; background: var(--line); }
.pt-prog li:first-child::before { display: none; }
.pt-prog li.done::before { background: var(--pu); }
.pt-prog li span { position: relative; z-index: 1; width: 30px; height: 30px; border-radius: 50%; background: #fff; border: 2px solid var(--line); color: var(--faint); display: grid; place-items: center; margin: 0 auto 7px; font-size: 12px; font-weight: 700; }
.pt-prog li.done span { background: var(--pu); border-color: var(--pu); color: #fff; }
.pt-prog li b { display: block; font-size: 12px; }
.pt-prog li i { display: block; font-size: 11px; color: var(--muted); font-style: normal; }

.pt-three { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; align-items: start; }
.pt-three h3 { font-size: 14.5px; margin-bottom: 10px; }
.pt-mile { text-align: center; }
.pt-mile-ic { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: var(--pu-050); color: var(--pu); font-size: 20px; margin-bottom: 8px; }
.pt-mile b { display: block; font-size: 14px; }
.pt-mile i { display: block; font-size: 12px; color: var(--muted); font-style: normal; margin-top: 3px; }
.pt-bal i { font-size: 11.5px; color: var(--muted); font-style: normal; }
.pt-bal b { display: block; font-size: 26px; font-weight: 800; color: var(--pu); }
.pt-bal u { display: block; font-size: 11.5px; color: var(--muted); text-decoration: none; }
.pt-bal-row { display: flex; justify-content: space-between; font-size: 12.5px; }
.pt-tasks { display: flex; gap: 12px; align-items: center; }
.pt-tasklist { flex: 1; min-width: 0; }
.pt-tasklist > i { display: block; font-size: 11.5px; color: var(--muted); font-style: normal; margin-bottom: 6px; }
.pt-task { display: flex; align-items: center; gap: 8px; font-size: 12.5px; padding: 3px 0; cursor: pointer; }
.pt-task input { accent-color: var(--good); width: 15px; height: 15px; }
.pt-task.done span { text-decoration: line-through; color: var(--faint); }
.pt-donut { width: 84px; height: 84px; flex: 0 0 auto; }

.pt-acts { padding: 4px 0; }
.pt-act { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-bottom: 1px solid var(--line-2); }
.pt-act:last-child { border-bottom: 0; }
.pt-act-ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: 0 0 auto; }
.pt-act b { display: block; font-size: 13px; }
.pt-act i { display: block; font-size: 12px; color: var(--muted); font-style: normal; }
.pt-act-t { margin-left: auto; font-size: 11.5px; color: var(--faint); white-space: nowrap; }
.pt-act-x { color: var(--faint); font-size: 18px; }
.pt-locknote { font-size: 12px; color: var(--muted); text-align: center; padding: 4px; }
.pt-changecard { background: var(--pu-050); border-color: var(--pu-100); }
.pt-changecard p { font-size: 12.5px; color: var(--muted); margin: 4px 0 10px; }
.pt-planner { display: flex; gap: 11px; align-items: center; }
.pt-planner b { display: block; font-size: 13.5px; }
.pt-planner i { display: block; font-size: 12px; color: var(--muted); font-style: normal; }
.pt-contact { margin-top: 10px; font-size: 12.5px; color: var(--muted); }
.pt-contact div { padding: 2px 0; }
.pt-vendor { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--line-2); }
.pt-vendor:last-child { border-bottom: 0; }
.pt-vendor b { display: block; font-size: 12.5px; }
.pt-vendor i { display: block; font-size: 11px; color: var(--muted); font-style: normal; }
.pt-vendor .badge { margin-left: auto; }

/* layout studio */
.pt-studio-row { display: grid; grid-template-columns: 92px minmax(0,1fr) 210px; gap: 12px; padding: 12px; }
.pt-pal { display: flex; flex-direction: column; gap: 6px; }
.pt-pal-i { position: relative; border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 9px 4px; font-size: 10.5px; cursor: pointer; color: var(--ink-2); }
.pt-pal-i span { display: block; font-size: 16px; margin-bottom: 3px; }
.pt-pal-i i { position: absolute; top: 4px; right: 5px; font-size: 9.5px; font-style: normal; color: var(--pu); font-weight: 700; }
.pt-pal-i:hover { border-color: var(--pu); background: var(--pu-050); }
.pt-canvas { min-height: 420px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #FCFCFE; }
.pt-canvas canvas, .pt-canvas .plan-svg { width: 100%; height: 100%; display: block; }
.pt-opts h4 { font-size: 12.5px; margin-bottom: 8px; }
.pt-opt { display: flex; gap: 9px; align-items: center; width: 100%; border: 1.5px solid var(--line); background: #fff; border-radius: 10px; padding: 9px 11px; margin-bottom: 6px; cursor: pointer; text-align: left; }
.pt-opt.on { border-color: var(--pu); background: var(--pu-050); }
.pt-opt b { display: block; font-size: 12.5px; }
.pt-opt i { display: block; font-size: 11px; color: var(--muted); font-style: normal; }
.pt-walk { height: 130px; border-radius: 10px; overflow: hidden; background: linear-gradient(#0E1E3C,#1B3E8C); }
.pt-walk canvas { width: 100%; height: 100%; display: block; }
.pt-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
.pt-stat > span { display: block; font-size: 16px; color: var(--pu); }
.pt-stat b { display: block; font-size: 19px; font-weight: 800; }
.pt-stat i { display: block; font-size: 11px; color: var(--muted); font-style: normal; }
.pt-stat u { display: block; font-size: 10px; color: var(--faint); text-decoration: none; }
.pt-note { display: flex; gap: 8px; font-size: 12.5px; padding: 4px 0; align-items: flex-start; }
.pt-note .ok { color: var(--good); font-weight: 800; }
.pt-note .warn { color: var(--warn); font-weight: 800; }
.pt-count { background: linear-gradient(135deg, var(--pu), #3B82F6); color: #fff; border-radius: 16px; padding: 18px; text-align: center; }
.pt-count > b { display: block; font-size: 15px; margin-bottom: 12px; }
.pt-count-row { display: flex; gap: 6px; justify-content: center; }
.pt-cc { background: rgba(255,255,255,.18); border-radius: 10px; padding: 8px 6px; flex: 1; }
.pt-cc b { display: block; font-size: 21px; font-weight: 800; font-variant-numeric: tabular-nums; }
.pt-cc i { display: block; font-size: 10px; opacity: .85; font-style: normal; }
.pt-count > i { display: block; font-size: 12px; margin-top: 10px; opacity: .92; font-style: normal; }
.pt-private { font-size: 12.5px; background: #FFFBEB; border-color: #F5E3B0; }

/* ------------------------------------------------------- responsive */
@media (max-width: 1200px) {
  .wz-review { grid-template-columns: 1fr 1fr; }
  .wz-rev-lock { grid-column: 1/-1; border-left: 0; border-top: 1px solid var(--line-2); }
  .pt-studio-row { grid-template-columns: 84px minmax(0,1fr); }
  .pt-opts { grid-column: 1/-1; }
  .pt-opts > .btn, .pt-opt { max-width: none; }
}
@media (max-width: 1080px) {
  .wz-body, .wz-body.wz-wide { grid-template-columns: 1fr; }
  .wz-side { position: static; display: grid; grid-template-columns: 200px minmax(0,1fr); }
  .wz-hero svg { height: 100%; min-height: 150px; }
  .pt-grid, .pt-studio { grid-template-columns: 1fr; }
  .pt-body { grid-template-columns: 1fr; }
  .pt-side { position: static; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 12px; align-items: start; }
  .pt-date { margin-bottom: 0; }
  .pt-evcard { grid-template-columns: 150px minmax(0,1fr); }
  .pt-evtotal { grid-column: 1/-1; text-align: left; padding: 12px 0 0; border-left: 0; border-top: 1px solid var(--line-2); }
}
@media (max-width: 760px) {
  .wz-steps li span { display: none; }
  .wz-steps li { padding: 0 10px; }
  .wz-side { grid-template-columns: 1fr; }
  .wz-h1 { font-size: 25px; }
  .wz-review { grid-template-columns: 1fr; }
  .wz-rev-pkg { border-left: 0; border-top: 1px solid var(--line-2); }
  .wz-foot { gap: 10px; padding: 10px 14px; }
  .wz-prog { order: 3; flex: 1 1 100%; }
  .wz-body { padding: 14px 14px 0; }
  .wz-top { padding: 10px 14px; gap: 12px; }
  .wz-done h1 { font-size: 28px; }
  .wz-preview-total { margin-left: 0; text-align: left; }
  .pt-body { padding: 14px 14px 30px; }
  .pt-top { padding: 10px 14px; }
  .pt-title { flex: 1 1 100%; order: 3; }
  .pt-evcard { grid-template-columns: 1fr; }
  .pt-studio-row { grid-template-columns: 1fr; }
  .pt-pal { flex-direction: row; overflow-x: auto; }
  .pt-pal-i { flex: 0 0 auto; min-width: 74px; }
  .pt-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .wz-confetti i, .wz-done-tick { animation: none; }
  .wz-tile:hover, .wz-style:hover { transform: none; }
}

.wz-size { margin-top: 12px; }
.wz-size > label { display: block; font-size: 12.5px; font-weight: 650; color: var(--ink-2); margin-bottom: 6px; }
.wz-size-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.wz-size-row .input { width: 92px; padding: 11px; text-align: center; font-weight: 700; }
.wz-size-row span { font-size: 12.5px; color: var(--muted); }
.wz-size-row i { font-style: normal; color: var(--faint); }
.wz-size small { display: block; font-size: 11.5px; color: var(--faint); margin-top: 5px; }
.wz-fit { display: flex; gap: 9px; align-items: flex-start; border-radius: 11px; padding: 11px 14px; font-size: 12.5px; margin-top: 12px; border: 1px solid; }
.wz-fit span { font-weight: 800; flex: 0 0 auto; }
.wz-fit.ok { background: var(--good-bg); border-color: #C9EBD6; color: #10693B; }
.wz-fit.warn { background: var(--warn-bg); border-color: #F6E2BE; color: #7A4B06; }
.wz-fit.bad { background: var(--bad-bg); border-color: #F5D5D5; color: #8E1E1E; }
.wz-fit .lp-link { color: inherit; text-decoration: underline; }

/* the portal header must wrap on a phone rather than push the page sideways */
@media (max-width: 760px) {
  .pt-top-act { flex: 1 1 100%; order: 4; flex-wrap: wrap; justify-content: flex-start; gap: 8px; }
  .pt-top-act .btn { flex: 1 1 auto; }
  .pt-user b { max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}
@media (max-width: 420px) {
  .pt-user i { display: none; }
  .pt-top-act .btn { font-size: 12px; padding: 7px 10px; }
}

/* ==================================================== VENUE PHOTO OVERLAY */
/* Your floor plan drawn onto a photo of the real place. See js/venuephoto.js
   for what the maths does and does not claim. */
.pt-studio-photo { grid-template-columns: minmax(0, 1fr) !important; }
.pt-studio-photo .pt-pal, .pt-studio-photo .pt-opts { display: none; }
.seg-new { font-style: normal; font-size: 9.5px; font-weight: 800; letter-spacing: .06em;
  background: var(--pu); color: #fff; border-radius: 999px; padding: 2px 6px; margin-left: 5px; vertical-align: 1px; }

.vp-wrap { display: block; }
.vp-stage { position: relative; line-height: 0; border-radius: 12px; overflow: hidden;
  background: #0E1420; box-shadow: 0 6px 20px rgba(12,20,38,.16); }
.vp-img { display: block; width: 100%; height: auto; }
.vp-canvas { position: absolute; inset: 0; pointer-events: none; }
.vp-handles { position: absolute; inset: 0; }

/* 40px targets — these get dragged with a thumb on a phone, over a photo */
.vp-h {
  position: absolute; width: 40px; height: 40px; margin: -20px 0 0 -20px; border-radius: 50%;
  border: 2.5px solid #fff; background: var(--pu); color: #fff; font: inherit; font-size: 14px;
  font-weight: 800; line-height: 1; cursor: grab; touch-action: none;
  box-shadow: 0 2px 10px rgba(8,16,32,.55); display: flex; align-items: center; justify-content: center;
}
.vp-h:hover, .vp-h:focus-visible { transform: scale(1.08); }
.vp-h.on { cursor: grabbing; background: #fff; color: var(--pu); }

.vp-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 12px; }
.vp-step { flex: 1 1 260px; min-width: 0; }
.vp-step b { display: block; font-size: 14px; }
.vp-step i { display: block; font-style: normal; font-size: 12.5px; color: var(--muted); margin-top: 3px; line-height: 1.5; }
.vp-bar-act { display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto; }
.vp-bar-act .btn { min-height: 38px; }

.vp-height { flex: 1 1 300px; min-width: 0; }
.vp-height label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 650; }
.vp-height label i { font-style: normal; color: var(--pu); }
.vp-height input[type=range] { width: 100%; margin: 6px 0 4px; accent-color: var(--pu); height: 26px; }
.vp-height small { display: block; font-size: 11.5px; color: var(--muted); line-height: 1.55; }

.vp-note { font-size: 12px; color: var(--muted); line-height: 1.6; margin-top: 10px; }
.vp-honest { border-left: 3px solid var(--line); padding-left: 10px; }

.vp-intake { text-align: center; padding: 34px 22px; border: 2px dashed var(--line); border-radius: 14px; background: var(--bg-2, #F7F8FC); }
.vp-intake-ic { font-size: 34px; opacity: .5; }
.vp-intake h4 { font-size: 17px; margin: 8px 0 6px; }
.vp-intake p { font-size: 13.5px; color: var(--muted); max-width: 460px; margin: 0 auto 16px; line-height: 1.6; }
.vp-intake .vp-note { max-width: 460px; margin: 16px auto 0; }

@media (max-width: 640px) {
  .vp-bar-act { margin-left: 0; width: 100%; }
  .vp-bar-act .btn { flex: 1 1 auto; }
  .vp-intake { padding: 26px 14px; }
}

/* ============================================== DEMONSTRATION NOTICE (public) */
/* Only rendered when served from a public host — see js/demobanner.js. Sits at
   the bottom so it never collides with the sticky landing nav or the app header. */
.demo-notice {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90;
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 11px;
  padding: 12px 14px; border-radius: 12px;
  background: #12203C; color: #E8EEFA;
  box-shadow: 0 10px 30px rgba(8,16,34,.34);
  font-size: 12.5px; line-height: 1.55;
  animation: demoIn .34s ease-out both;
}
@keyframes demoIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .demo-notice { animation: none; } }
.demo-notice-ic { font-size: 15px; opacity: .8; line-height: 1.3; flex: 0 0 auto; }
.demo-notice-tx { flex: 1 1 auto; min-width: 0; }
.demo-notice-tx b { color: #fff; }
.demo-notice-x {
  flex: 0 0 auto; width: 32px; height: 32px; margin: -4px -4px 0 0;
  border: 0; border-radius: 8px; background: rgba(255,255,255,.1);
  color: #E8EEFA; font: inherit; font-size: 13px; cursor: pointer;
}
.demo-notice-x:hover { background: rgba(255,255,255,.2); }
@media (max-width: 560px) {
  .demo-notice { left: 8px; right: 8px; bottom: 8px; font-size: 12px; padding: 11px 12px; }
}

/* ======================================================= WEBSITE SECTIONS */
/* Memories In Motion's public site. The Party Planner is one section of it. */
.lp-lede { max-width: 640px; font-size: 14px; color: var(--muted); line-height: 1.65; margin: -4px 0 20px; }
.lp-note { font-size: 12.5px; color: var(--faint); line-height: 1.6; margin-top: 14px; }

/* ---- rentals price list ---- */
.lp-cat { margin-bottom: 26px; scroll-margin-top: 84px; }
.lp-cat-hd { font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--line); padding-bottom: 8px; margin-bottom: 14px; }
.lp-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 288px), 1fr)); gap: 12px; }
.lp-item { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 14px 15px;
  box-shadow: var(--sh); display: flex; flex-direction: column; min-width: 0; }
.lp-item-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.lp-item-name { font-size: 14.5px; font-weight: 700; min-width: 0; }
.lp-item-price { text-align: right; flex: 0 0 auto; white-space: nowrap; }
.lp-item-price b { display: block; font-size: 17px; color: var(--pu); font-weight: 800; }
.lp-item-price i { display: block; font-style: normal; font-size: 10.5px; color: var(--faint); }
.lp-price-q { font-size: 13px !important; color: var(--muted) !important; font-weight: 700 !important; }
.lp-item-desc { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin: 7px 0 0; flex: 1; }
.lp-item-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.lp-item-meta span { font-size: 10.5px; color: var(--faint); background: var(--bg-2, #F5F7FB);
  border-radius: 999px; padding: 3px 8px; }

/* ---- the planner, presented as a feature ---- */
.lp-planner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 28px;
  align-items: center; padding: 26px; }
.lp-badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; background: var(--pu); border-radius: 999px; padding: 5px 11px; }
.lp-planner-steps { display: flex; flex-direction: column; gap: 11px; }
.lp-pstep { display: flex; gap: 11px; align-items: flex-start; }
.lp-pstep > span { flex: 0 0 auto; font-size: 17px; color: var(--pu); line-height: 1.25; }
.lp-pstep b { display: block; font-size: 13.5px; }
.lp-pstep i { display: block; font-style: normal; font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-top: 1px; }

/* ---- packages ---- */
.lp-packs { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 14px; }
.lp-pack { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 15px;
  padding: 20px 18px; box-shadow: var(--sh); display: flex; flex-direction: column; min-width: 0; }
.lp-pack.best { border-color: var(--pu); box-shadow: 0 8px 26px rgba(29,78,216,.16); }
.lp-pack-best { position: absolute; top: -10px; left: 18px; font-size: 10px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--pu);
  border-radius: 999px; padding: 4px 10px; }
.lp-pack h3 { font-size: 17px; margin: 2px 0 4px; }
.lp-pack-blurb { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin: 0 0 12px; }
.lp-pack-price { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.lp-pack-price b { font-size: 26px; color: var(--ink); font-weight: 800; }
.lp-pack-list { list-style: none; padding: 0; margin: 0 0 16px; flex: 1; }
.lp-pack-list li { font-size: 12.5px; color: var(--ink); padding: 5px 0 5px 18px; position: relative; line-height: 1.45; }
.lp-pack-list li::before { content: '✓'; position: absolute; left: 0; color: var(--pu); font-weight: 700; }

/* ---- contact ---- */
.lp-contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); gap: 12px; }
.lp-cbox { display: block; background: #fff; border: 1px solid var(--line); border-radius: 13px;
  padding: 17px 16px; box-shadow: var(--sh); text-decoration: none; color: inherit; min-width: 0; }
a.lp-cbox:hover { border-color: var(--pu); transform: translateY(-2px); }
a.lp-cbox { transition: transform .15s, border-color .15s; }
.lp-cbox-ic { display: block; font-size: 21px; margin-bottom: 7px; }
.lp-cbox b { display: block; font-size: 13.5px; }
.lp-cbox i { display: block; font-style: normal; font-size: 13px; color: var(--pu); font-weight: 600;
  margin-top: 3px; word-break: break-word; }

/* ---- how-it-works steps carry a caption now ---- */
.lp-step u { text-decoration: none; display: block; font-size: 11.5px; color: var(--muted);
  line-height: 1.45; margin-top: 4px; }

@media (max-width: 900px) {
  .lp-planner { grid-template-columns: minmax(0, 1fr); gap: 22px; padding: 20px; }
}
@media (max-width: 560px) {
  .lp-items { grid-template-columns: minmax(0, 1fr); }
  .lp-cat { scroll-margin-top: 70px; }
}
