/* =====================================================================
   eBay Baltic Export Summit 2026, attendee app
   Same palette and type as the summit site (css/main.css): the four logo
   colours, Market Sans 400/600, neutrals do the work. Black pill buttons
   and Skin icons per eBay's July design review. One signature piece, the
   boarding pass; everything around it stays quiet. Motion is a single
   short fade between views and nothing else.
   ===================================================================== */

@font-face{
  font-family:"Market Sans"; font-weight:400; font-style:normal; font-display:swap;
  src:url("../fonts/MarketSans-Regular.woff") format("woff");
}
@font-face{
  font-family:"Market Sans"; font-weight:600; font-style:normal; font-display:swap;
  src:url("../fonts/MarketSans-SemiBold.woff") format("woff");
}

:root{
  --blue:#0968F6; --blue-hover:#0049B8;
  --red:#F02D2D;
  --yellow:#FFBD14;
  --green:#92C821;
  --white:#ffffff;
  --n1:#f7f7f7; --n2:#f0f0f0; --n3:#e5e5e5; --n4:#c7c7c7; --n6:#707070;
  --text:#41413F; --ink:#191919;
  --error:#c4003a;
  --r-card:16px; --r-small:8px; --r-pill:999px;
  --gutter:16px;
  --tabs-h:64px;
  --shadow:0 1px 2px rgba(25,25,25,.06), 0 8px 24px rgba(25,25,25,.08);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ -webkit-text-size-adjust:100%; }
body{
  font-family:"Market Sans",Helvetica,Arial,sans-serif;
  font-size:16px; line-height:1.45; color:var(--text);
  background:var(--n1);
  -webkit-font-smoothing:antialiased;
  -webkit-tap-highlight-color:transparent;
  overflow-x:hidden;
  top:0 !important;               /* Google Translate pushes the body down; never */
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
:focus-visible{ outline:2px solid var(--blue); outline-offset:2px; border-radius:4px; }
.ic{ width:24px; height:24px; fill:currentColor; flex:none; }
[hidden]{ display:none !important; }

/* ---------- shell ---------- */
.shell{
  width:100%; max-width:480px; min-height:100vh; min-height:100dvh;
  margin:0 auto; background:var(--n1);
  display:flex; flex-direction:column;
}
.side{ display:none; }

.top{
  position:sticky; top:0; z-index:20;
  display:flex; align-items:center; gap:10px;
  height:calc(56px + env(safe-area-inset-top)); padding:env(safe-area-inset-top) var(--gutter) 0;
  background:rgba(255,255,255,.94); border-bottom:1px solid var(--n3);
  -webkit-backdrop-filter:saturate(1.4) blur(12px); backdrop-filter:saturate(1.4) blur(12px);
}
.top-logo img{ height:24px; width:auto; }
.top-name{ font-size:13px; color:var(--n6); padding-left:10px; border-left:1px solid var(--n4); line-height:1.1; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; min-width:0; }
.lang-btn{
  margin-left:auto; flex:none; display:inline-flex; align-items:center; gap:6px;
  height:36px; padding:0 12px 0 10px; border-radius:var(--r-pill);
  border:1px solid var(--n4); background:var(--white);
  font-size:13px; font-weight:600; color:var(--ink);
}
.lang-btn .ic{ width:18px; height:18px; }

.view{ flex:1; padding:8px var(--gutter) 32px; outline:none; }
.view.enter{ animation:viewin .18s ease-out both; }
@keyframes viewin{ from{ opacity:0; transform:translateY(6px); } to{ opacity:1; transform:none; } }

.tabs{
  position:sticky; bottom:0; z-index:20;
  display:grid; grid-template-columns:repeat(5,1fr);
  min-height:calc(var(--tabs-h) + env(safe-area-inset-bottom)); padding-bottom:env(safe-area-inset-bottom);
  background:var(--white); border-top:1px solid var(--n3);
}
.tabs a{
  position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px;
  font-size:11px; color:var(--n6); min-width:0;
}
.tabs a span{ max-width:100%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; padding:0 2px; }
.tabs a[aria-current="page"]{ color:var(--ink); font-weight:600; }
.tabs a[aria-current="page"]::before{ content:""; position:absolute; top:-1px; left:50%; width:32px; height:3px; margin-left:-16px; background:var(--ink); border-radius:0 0 3px 3px; }

/* ---------- type ---------- */
.eyebrow{ font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--n6); }
.display{
  font-weight:600; text-transform:uppercase; color:var(--ink);
  font-size:clamp(34px,10.5vw,46px); line-height:.95; letter-spacing:-.02em;
  overflow-wrap:anywhere; text-wrap:balance;
}
.page-head{ padding:16px 0 20px; }
.page-head .display{ margin-top:6px; }
.page-head p{ margin-top:12px; color:var(--n6); max-width:40ch; }
h2.group{ font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--n6); margin:28px 0 12px; }
h2.group:first-of-type{ margin-top:4px; }

.back{ display:inline-flex; align-items:center; gap:2px; min-height:44px; margin-left:-6px; font-size:14px; font-weight:600; color:var(--ink); }
.back .ic{ width:18px; height:18px; }
.back + .page-head{ padding-top:4px; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  min-height:48px; padding:0 24px; border-radius:var(--r-pill);
  font-weight:600; font-size:16px; text-align:center;
  background:var(--ink); color:var(--white); border:1px solid var(--ink);
}
.btn:active{ background:#000; }
.btn.ghost{ background:var(--white); color:var(--ink); border-color:var(--n4); }
.btn.block{ display:flex; width:100%; }
.btn .ic{ width:20px; height:20px; }
.btn[disabled]{ opacity:.45; cursor:default; }

/* ---------- boarding pass ---------- */
.greet{ padding:12px 0 18px; }
.greet .display{ margin-top:6px; }

.pass{
  position:relative; background:var(--white); border-radius:var(--r-card);
  box-shadow:var(--shadow); overflow:hidden;
}
.pass-strip{ display:grid; grid-template-columns:repeat(4,1fr); height:8px; }
.pass-strip i:nth-child(1){ background:var(--red); }
.pass-strip i:nth-child(2){ background:var(--blue); }
.pass-strip i:nth-child(3){ background:var(--yellow); }
.pass-strip i:nth-child(4){ background:var(--green); }
.pass-main{ padding:16px 20px 20px; }
.pass-head{ display:flex; justify-content:space-between; align-items:baseline; gap:12px; }
.pass-head b{ font-size:12px; letter-spacing:.14em; color:var(--ink); font-weight:600; }
.pass-head span{ font-size:12px; letter-spacing:.06em; color:var(--n6); white-space:nowrap; }

.route{ display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:12px; margin-top:18px; }
.route .pt b{ display:block; font-size:52px; line-height:.9; letter-spacing:-.03em; color:var(--ink); font-weight:600; }
.route .pt small{ display:block; margin-top:6px; font-size:13px; color:var(--n6); }
.route .pt.to{ text-align:right; }
.route.wide .pt b{ font-size:30px; letter-spacing:-.01em; }
.route-line{ position:relative; height:24px; display:flex; align-items:center; color:var(--ink); min-width:32px; }
.route-line::before{ content:""; flex:1; height:0; border-top:2px dotted var(--n4); margin-right:4px; }
.route-line::after{ content:""; position:absolute; left:0; top:50%; width:8px; height:8px; margin-top:-4px; border-radius:50%; background:var(--ink); }
.route-line .ic{ width:20px; height:20px; }

.fields{ display:grid; grid-template-columns:1fr 1fr; gap:16px 16px; margin-top:22px; }
.field{ min-width:0; }
.field.full{ grid-column:1 / -1; }
.field dt{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--n6); }
.field dd{ margin-top:3px; font-size:17px; line-height:1.2; font-weight:600; color:var(--ink); overflow-wrap:anywhere; }

.perf{ position:relative; height:0; border-top:2px dashed var(--n3); margin:0 18px; }
.perf::before,.perf::after{ content:""; position:absolute; top:-13px; width:24px; height:24px; border-radius:50%; background:var(--n1); box-shadow:inset 0 1px 2px rgba(25,25,25,.08); }
.perf::before{ left:-30px; } .perf::after{ right:-30px; }

.stub{ display:grid; grid-template-columns:112px 1fr; gap:18px; align-items:center; padding:20px; }
.stub-qr{ width:112px; height:112px; }
.stub-qr svg{ width:100%; height:100%; display:block; }
.stub .fields{ margin-top:0; grid-template-columns:1fr 1fr; gap:12px; }
.stub .field dd{ font-size:15px; }
.stub .field.code dd{ font-size:17px; letter-spacing:.12em; font-variant-numeric:tabular-nums; }

.stub.guest{ grid-template-columns:1fr; gap:12px; }
.stub.guest p{ font-size:14px; color:var(--n6); }
.code-form{ display:flex; gap:8px; }
.code-form input{
  flex:1; min-width:0; height:48px; padding:0 16px; border-radius:var(--r-pill);
  border:1px solid var(--n4); background:var(--white); font:inherit; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--ink);
}
.code-form input::placeholder{ letter-spacing:0; text-transform:none; font-weight:400; color:var(--n6); }
.code-form .btn{ padding:0 20px; }
.form-msg{ font-size:14px; color:var(--error); min-height:0; }

/* ---------- status (countdown, now and next) ---------- */
.status{
  margin-top:16px; border-radius:var(--r-card); background:var(--ink); color:var(--white);
  padding:16px 20px; display:flex; align-items:center; gap:16px;
}
a.status{ color:var(--white); }
.status .big{ font-size:40px; line-height:1; font-weight:600; letter-spacing:-.02em; font-variant-numeric:tabular-nums; white-space:nowrap; }
.status .txt{ min-width:0; font-size:14px; line-height:1.35; color:rgba(255,255,255,.78); }
.status .txt b{ display:block; color:var(--white); font-size:16px; font-weight:600; }
.status.now{ display:block; }
.status.now .row + .row{ margin-top:12px; padding-top:12px; border-top:1px solid rgba(255,255,255,.18); }
.status.now .k{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.7); }
.status.now .v{ font-size:16px; font-weight:600; line-height:1.3; margin-top:2px; }
.status.now .v time{ font-variant-numeric:tabular-nums; margin-right:8px; color:var(--yellow); }

/* ---------- tiles ---------- */
.tiles{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:16px; }
.tile{
  position:relative; min-height:128px; border-radius:var(--r-card); padding:16px;
  display:flex; flex-direction:column; justify-content:space-between; gap:20px;
  color:var(--ink); background:var(--white); overflow:hidden; min-width:0;
}
.tile .ic{ width:28px; height:28px; }
.tile b{ display:block; font-size:19px; line-height:1.12; font-weight:600; letter-spacing:-.01em; }
.tile small{ display:block; margin-top:4px; font-size:13px; line-height:1.3; opacity:.82; }
.tile.wide{ grid-column:1 / -1; min-height:112px; }
.tile.blue{ background:var(--blue); color:var(--white); }
.tile.red{ background:var(--red); color:var(--white); }
.tile.yellow{ background:var(--yellow); }
.tile.green{ background:var(--green); }
.tile.ink{ background:var(--ink); color:var(--white); }
.tile.photo{ color:var(--white); background:var(--ink); }
.tile.photo::before{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(25,25,25,.15),rgba(25,25,25,.72)), url("../img/vilnius.jpg") center/cover; }
.tile.photo > *{ position:relative; }
.tile:active{ filter:brightness(.94); }

.install{
  margin-top:16px; border-radius:var(--r-card); background:var(--white); padding:16px;
  display:flex; align-items:flex-start; gap:12px; font-size:14px; line-height:1.4;
}
.install b{ display:block; color:var(--ink); font-size:15px; }
.install .btn{ min-height:40px; padding:0 16px; font-size:14px; margin-top:10px; }
.install .x{ margin-left:auto; color:var(--n6); flex:none; }

/* ---------- agenda ---------- */
.agenda{ list-style:none; position:relative; }
.block{ position:relative; display:grid; grid-template-columns:76px 1fr; gap:0 12px; padding:0 0 24px; }
.block::before{ content:""; position:absolute; left:5px; top:22px; bottom:0; width:2px; background:var(--n3); }
.block:last-child::before{ display:none; }
.block .when{ display:flex; align-items:flex-start; gap:8px; padding-top:2px; }
.block .sq{ width:12px; height:12px; border-radius:3px; margin-top:6px; flex:none; position:relative; z-index:1; }
.sq.red{ background:var(--red); } .sq.blue{ background:var(--blue); } .sq.yellow{ background:var(--yellow); } .sq.green{ background:var(--green); }
.block time{ font-size:18px; font-weight:600; color:var(--ink); font-variant-numeric:tabular-nums; letter-spacing:-.01em; }
.block h3{ font-size:18px; line-height:1.25; font-weight:600; color:var(--ink); padding-top:2px; }
.block .tag{ display:inline-block; margin:0 0 6px; }
.tag{ font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; padding:3px 8px; border-radius:var(--r-pill); background:var(--ink); color:var(--white); }
.tag.mine{ background:var(--blue); }
.parts{ grid-column:2; display:grid; gap:8px; margin-top:12px; }
.part{ background:var(--white); border-radius:12px; padding:12px 14px; }
.part.mine{ box-shadow:inset 0 0 0 2px var(--blue); }
.part .lab{ display:flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:var(--ink); margin-bottom:4px; }
.part ul{ list-style:none; display:grid; gap:8px; }
.part li{ font-size:15px; line-height:1.35; }
.part ul.many li{ padding-left:14px; position:relative; }
.part ul.many li::before{ content:""; position:absolute; left:0; top:.55em; width:5px; height:5px; border-radius:50%; background:var(--n4); }

/* ---------- speakers ---------- */
.speakers{ display:grid; grid-template-columns:1fr 1fr; gap:20px 12px; }
.sp{ text-align:left; min-width:0; }
.sp .ph{ display:block; aspect-ratio:1; border-radius:var(--r-card); overflow:hidden; background:var(--n3); }
.sp .ph img{ width:100%; height:100%; object-fit:cover; }
.sp b{ display:block; margin-top:10px; font-size:16px; line-height:1.2; color:var(--ink); font-weight:600; }
.sp small{ display:block; margin-top:3px; font-size:13px; line-height:1.3; color:var(--n6); }

.bio-head{ display:grid; grid-template-columns:96px 1fr; gap:16px; align-items:center; padding-right:40px; }
.bio-head img{ width:96px; height:96px; border-radius:var(--r-card); object-fit:cover; }
.bio-head h2{ font-size:22px; line-height:1.1; color:var(--ink); font-weight:600; }
.bio-head p{ margin-top:6px; font-size:14px; line-height:1.3; color:var(--n6); }
.bio p{ margin-top:14px; font-size:15px; line-height:1.5; }
.bio{ margin-top:6px; }

/* ---------- booths ---------- */
.booths{ list-style:none; display:grid; gap:8px; }
.booth{ display:grid; grid-template-columns:64px 1fr 84px; align-items:center; gap:12px; background:var(--white); border-radius:12px; padding:10px 12px 10px 10px; min-height:64px; }
.booth .no{ display:flex; align-items:center; justify-content:center; height:44px; border-radius:var(--r-small); background:var(--ink); color:var(--white); font-size:14px; font-weight:600; letter-spacing:.04em; font-variant-numeric:tabular-nums; }
.booth b{ font-size:16px; line-height:1.2; color:var(--ink); font-weight:600; min-width:0; overflow-wrap:anywhere; }
.booth .logo{ height:40px; display:flex; align-items:center; justify-content:flex-end; }
.booth .logo img{ max-height:36px; max-width:84px; width:auto; object-fit:contain; }

/* ---------- venue ---------- */
.map{ border-radius:var(--r-card); overflow:hidden; background:var(--n3); aspect-ratio:4/3; }
.map iframe{ width:100%; height:100%; border:0; display:block; }
.card{ background:var(--white); border-radius:var(--r-card); padding:16px 18px; margin-top:12px; }
.card .fields{ margin-top:0; }
.addr{ display:flex; align-items:flex-start; gap:12px; }
.addr div{ min-width:0; }
.addr b{ display:block; font-size:18px; color:var(--ink); font-weight:600; }
.addr span{ display:block; font-size:15px; margin-top:2px; }
.addr .copy{ margin-left:auto; flex:none; width:40px; height:40px; border-radius:50%; border:1px solid var(--n4); display:flex; align-items:center; justify-content:center; color:var(--ink); }
.addr .copy .ic{ width:18px; height:18px; }
.stack{ display:grid; gap:10px; margin-top:16px; }
.stack.two{ grid-template-columns:1fr 1fr; }

/* ---------- game ---------- */
.games{ display:grid; gap:12px; }
.game{ display:grid; grid-template-columns:1fr auto; align-items:center; gap:12px; border-radius:var(--r-card); padding:18px; min-height:88px; color:var(--ink); }
.game b{ display:block; font-size:22px; line-height:1.1; font-weight:600; letter-spacing:-.01em; }
.game small{ display:block; margin-top:4px; font-size:14px; line-height:1.3; opacity:.85; }
.game.blue{ background:var(--blue); color:var(--white); } .game.red{ background:var(--red); color:var(--white); }
.game.yellow{ background:var(--yellow); } .game.green{ background:var(--green); }

/* ---------- explore ---------- */
.hero-photo{ position:relative; border-radius:var(--r-card); overflow:hidden; aspect-ratio:4/3; background:var(--ink); margin-top:8px; }
.hero-photo img{ width:100%; height:100%; object-fit:cover; }
.hero-photo::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(25,25,25,0) 35%,rgba(25,25,25,.78)); }
.hero-photo .display{ position:absolute; left:18px; right:18px; bottom:16px; z-index:1; color:var(--white); }
.prose{ margin-top:16px; }
.prose p + p{ margin-top:10px; }

/* ---------- survey ---------- */
.q{ background:var(--white); border-radius:var(--r-card); padding:18px; margin-top:12px; border:2px solid transparent; }
.q.bad{ border-color:var(--error); }
.q legend,.q .legend{ font-size:17px; line-height:1.3; font-weight:600; color:var(--ink); padding:0; display:block; }
.q .n{ display:block; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--n6); font-weight:600; margin-bottom:6px; }
.q .hint{ font-size:14px; color:var(--n6); margin-top:4px; }
.q .err{ display:none; font-size:14px; color:var(--error); margin-top:8px; }
.q.bad .err{ display:block; }
fieldset.q{ min-width:0; }
.opts{ display:grid; gap:8px; margin-top:14px; }
.opt{ position:relative; display:flex; align-items:center; gap:12px; min-height:48px; padding:10px 14px; border-radius:12px; border:1px solid var(--n3); background:var(--white); font-size:15px; line-height:1.3; cursor:pointer; }
.opt input{ position:absolute; opacity:0; pointer-events:none; }
.opt .mark{ flex:none; width:22px; height:22px; border-radius:50%; border:2px solid var(--n4); display:flex; align-items:center; justify-content:center; color:var(--white); }
.opt.check .mark{ border-radius:6px; }
.opt .mark .ic{ width:14px; height:14px; opacity:0; }
.opt:has(input:checked){ border-color:var(--ink); box-shadow:inset 0 0 0 1px var(--ink); color:var(--ink); font-weight:600; }
.opt:has(input:checked) .mark{ background:var(--ink); border-color:var(--ink); }
.opt:has(input:checked) .mark .ic{ opacity:1; }
.opt:has(input:focus-visible){ outline:2px solid var(--blue); outline-offset:2px; }
.opt.off{ opacity:.45; }
.q textarea,.q input[type=text]{
  width:100%; margin-top:12px; padding:12px 14px; border-radius:12px; border:1px solid var(--n4); background:var(--white);
  font:inherit; color:var(--ink); resize:vertical;
}
.q textarea{ min-height:96px; }
.q input[type=text].other{ margin-top:8px; }
.survey-actions{ margin-top:20px; }
.survey-actions p{ margin-top:10px; font-size:13px; color:var(--n6); text-align:center; }
.done{ background:var(--white); border-radius:var(--r-card); padding:28px 20px; text-align:center; margin-top:12px; }
.done .ic{ width:44px; height:44px; color:var(--green); }
.done h2{ margin-top:10px; font-size:24px; line-height:1.1; color:var(--ink); font-weight:600; }
.done p{ margin-top:8px; color:var(--n6); }
.done .btn{ margin-top:18px; }

/* ---------- sheet ---------- */
.sheet-wrap{ position:fixed; inset:0; z-index:50; display:flex; align-items:flex-end; justify-content:center; }
.sheet-scrim{ position:absolute; inset:0; background:rgba(25,25,25,.5); animation:fade .18s ease-out both; }
.sheet{
  position:relative; width:100%; max-width:480px; max-height:86dvh; overflow:auto; -webkit-overflow-scrolling:touch;
  background:var(--white); border-radius:24px 24px 0 0; padding:24px 20px calc(28px + env(safe-area-inset-bottom));
  animation:rise .22s cubic-bezier(.2,.8,.2,1) both;
}
.sheet-close{ position:absolute; top:14px; right:14px; width:40px; height:40px; border-radius:50%; background:var(--n1); display:flex; align-items:center; justify-content:center; color:var(--ink); z-index:2; }
.sheet-close .ic{ width:18px; height:18px; }
.sheet h2.sheet-title{ font-size:22px; color:var(--ink); font-weight:600; line-height:1.15; padding-right:44px; }
.sheet .sub{ margin-top:6px; font-size:14px; color:var(--n6); }
@keyframes fade{ from{ opacity:0; } to{ opacity:1; } }
@keyframes rise{ from{ transform:translateY(24px); opacity:0; } to{ transform:none; opacity:1; } }

.langs{ display:grid; gap:8px; margin-top:16px; }
.langs button{ display:flex; align-items:center; justify-content:space-between; min-height:52px; padding:0 16px; border-radius:12px; border:1px solid var(--n3); font-size:16px; color:var(--ink); text-align:left; }
.langs button[aria-pressed="true"]{ border-color:var(--ink); box-shadow:inset 0 0 0 1px var(--ink); font-weight:600; }
.langs button small{ color:var(--n6); font-weight:400; font-size:13px; }

.toast{
  position:fixed; left:50%; bottom:calc(var(--tabs-h) + 16px + env(safe-area-inset-bottom)); transform:translate(-50%,12px);
  background:var(--ink); color:var(--white); font-size:14px; padding:10px 16px; border-radius:var(--r-pill);
  opacity:0; pointer-events:none; transition:opacity .18s, transform .18s; z-index:60; max-width:calc(100vw - 32px); text-align:center;
}
.toast.on{ opacity:1; transform:translate(-50%,0); }

/* Google Translate chrome: keep the translation, drop its banner and tooltips */
.goog-te-banner-frame,.skiptranslate iframe,#goog-gt-tt,.goog-te-balloon-frame,.VIpgJd-ZVi9od-ORHb-OEVmcd,.VIpgJd-ZVi9od-aZ2wEe-wOHMyf{ display:none !important; }
.goog-text-highlight{ background:none !important; box-shadow:none !important; }
font{ font:inherit !important; }

/* ---------- small phones ---------- */
@media (max-width:359px){
  :root{ --gutter:14px; }
  .route .pt b{ font-size:42px; }
  .stub{ grid-template-columns:96px 1fr; gap:14px; }
  .stub-qr{ width:96px; height:96px; }
  .tile b{ font-size:17px; }
  .booth{ grid-template-columns:60px 1fr 64px; }
  .booth .logo img{ max-width:64px; }
  .top-name{ display:none; }
}

/* ---------- desktop: the lockup on the left, the app as a column ---------- */
@media (min-width:1000px){
  body{ background:var(--n2); }
  .side{
    display:flex; flex-direction:column; justify-content:space-between;
    position:fixed; left:0; top:0; bottom:0; width:44vw; background:#020506; color:var(--white); padding:40px 48px; overflow:hidden;
  }
  .side-lockup{ width:min(100%,60vh,560px); height:auto; margin:auto 0; }
  .side-foot{ display:flex; align-items:center; gap:16px; font-size:14px; line-height:1.4; color:rgba(255,255,255,.72); }
  .side-foot strong{ color:var(--white); font-weight:600; font-size:16px; }
  .side-qr{ width:96px; height:96px; padding:8px; background:var(--white); border-radius:var(--r-small); flex:none; }
  .side-qr svg{ width:100%; height:100%; display:block; }
  .side-qr:empty{ display:none; }
  .shell{ margin-left:calc(44vw + (56vw - 440px) / 2); max-width:440px; box-shadow:0 0 0 1px var(--n3); }
  .sheet-wrap{ left:44vw; }
  .sheet{ max-width:440px; border-radius:24px; margin-bottom:24px; }
  .toast{ left:calc(44vw + 28vw); }
  .display{ font-size:44px; }
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation:none !important; transition:none !important; }
}
