

:root {
  --hdr: 78px;
  --pad: clamp(14px, 2.2vw, 30px);
  --cap-h: 122px;
  --hud-h: 60px;
  --win-w: 1040px;
  --win-h: 620px;
  --cap-w: clamp(300px, 26vw, 460px);
  --col-gap: 52px;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, "Cascadia Mono", "Liberation Mono", monospace;
  --p-lift: 0 30px 80px rgba(20,20,15,.16), 0 2px 6px rgba(20,20,15,.06);
  --p-card: 0 10px 30px rgba(20,20,15,.08);
  --hl: var(--accent-soft);
  
  --ed-bg: #FBFAF7;
  --ed-gut: var(--fg-faint);
  --c-tag: #205C53;      
  --c-att: #A85315;      
  --c-str: #3D7A6F;      
  --c-key: #6B4FA8;      
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --p-lift: 0 30px 80px rgba(0,0,0,.45); --p-card: 0 10px 30px rgba(0,0,0,.3);
    --hl: rgba(232,133,58,.30); --ed-bg: #10312B;
    --c-tag: #8FBDB4; --c-att: #F0A35F; --c-str: #9AD0C4; --c-key: #C0AEEA;
  }
}
:root[data-theme="dark"] {
  --p-lift: 0 30px 80px rgba(0,0,0,.45); --p-card: 0 10px 30px rgba(0,0,0,.3);
  --hl: rgba(232,133,58,.30); --ed-bg: #10312B;
  --c-tag: #8FBDB4; --c-att: #F0A35F; --c-str: #9AD0C4; --c-key: #C0AEEA;
}

.film { position: relative; z-index: 1; }
.film__track { padding-top: 12px; }
.film__stage { position: relative; overflow: hidden; isolation: isolate; padding: var(--pad); background: var(--bg); color: var(--fg); }
.js .film--live .film__track { padding-top: 0; }
.js .film--live .film__stage {
  height: calc(100vh - var(--hdr));
  height: calc(100svh - var(--hdr));
  min-height: 560px; padding: 0;
}
.film__dots {
  position: absolute; inset: -25% -15%; z-index: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1.6px);
  background-size: 32px 32px; transform-origin: 0 0;
}
.orbs--film { z-index: 0; transform-origin: 0 0; }
.js .film--live .film__dots, .js .film--live .orbs--film { will-change: transform; }
.orbs--film i { background: var(--green-600); }
.orbs--film i:nth-child(1) { width: 420px; height: 420px; right: -150px; top: -170px; opacity: .05; }
.orbs--film i:nth-child(2) { width: 160px; height: 160px; left: 5%; bottom: -60px; opacity: .06; }
.orbs--film i:nth-child(3) { width: 80px;  height: 80px;  left: 42%; top: 8%; opacity: .05; }

.caps { position: relative; z-index: 3; display: grid; gap: 18px; margin-bottom: 26px; }
.cap {
  margin: 0; font-family: var(--font-display); font-weight: var(--wt-display);
  letter-spacing: var(--track-display); line-height: 1.15;
  font-size: clamp(1.5rem, 1.05rem + 1.75vw, 2.45rem);
}
.cap__k {
  display: block; margin-bottom: 8px;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep);
}
.cap__k::before {
  content: ""; display: inline-block; width: 16px; height: 2px; margin-right: 10px;
  vertical-align: middle; background: var(--accent);
}

.hl {
  font-style: inherit; padding: .04em .12em; margin: 0 -.12em; border-radius: .18em;
  background-image: linear-gradient(var(--hl), var(--hl));
  background-repeat: no-repeat; background-position: 0 0; background-size: 100% 100%;
}
.js .film--live .hl { background-size: 0% 100%; }
.js .film--live .caps {
  position: absolute; left: var(--pad); right: var(--pad); top: 0; height: var(--cap-h);
  display: block; margin: 0; text-align: center; pointer-events: none;
}
.js .film--live .cap { position: absolute; left: 0; right: 0; top: 55%; opacity: 0; }

.winbox { position: relative; z-index: 2; overflow-x: auto; }
.js .film--live .winbox {
  position: absolute; left: var(--pad); right: var(--pad);
  top: var(--cap-h); bottom: var(--hud-h); overflow: visible;
}
.win {
  position: relative; width: var(--win-w); margin-inline: auto;
  background: var(--surface); color: var(--fg);
  border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--p-lift); overflow: hidden;
  font-family: var(--font-body); font-size: 13px; line-height: 1.4;
}
.js .film--live .win {
  position: absolute; left: 0; top: 0; margin: 0; height: var(--win-h);
  transform-origin: 0 0; will-change: transform; opacity: 0;
}
.js .film--still .win { transform-origin: 0 0; }
.js .film--still .winbox { overflow: hidden; }

.chrome {
  position: relative; display: flex; align-items: center; gap: 14px;
  height: 44px; padding: 0 14px; background: var(--bg); border-bottom: 1px solid var(--border);
}
.chrome__dots { display: flex; gap: 6px; }
.chrome__dots b { display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.chrome__tabs { display: flex; gap: 3px; align-self: flex-end; }
.tab {
  white-space: nowrap; padding: 8px 13px 9px; border-radius: 9px 9px 0 0;
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint);
}
.tab.is-on { background: var(--surface); color: var(--fg); }
.chrome__url {
  flex: 1 1 auto; height: 28px; display: flex; align-items: center; padding: 0 12px;
  border-radius: 8px; background: var(--surface); border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-soft); white-space: nowrap; overflow: hidden;
}
.chrome__save {
  flex: 0 0 auto; font-style: normal; font-size: 9.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--green-600);
}
.js .film--live .chrome__save { opacity: 0; }

.ide { display: grid; grid-template-columns: 420px 1fr; }
.js .film--live .ide { height: calc(var(--win-h) - 44px); }

.ed { position: relative; display: grid; grid-template-columns: 42px 1fr; align-content: start; background: var(--ed-bg); border-right: 1px solid var(--border); }
.js .film--live .ed { overflow: hidden; }
.ed__gut { padding: 16px 0 0; text-align: right; }
.ed__gut span {
  display: block; padding-right: 12px; font-family: var(--font-mono);
  font-size: 11.5px; line-height: 26px; color: var(--ed-gut); opacity: .55;
}
.ed__code { position: relative; padding: 16px 14px 0 6px; }
.fl { list-style: none; margin: 0 0 18px; padding: 0; }

.fl::before {
  content: attr(data-f); display: block; margin-bottom: 6px;
  font-family: var(--font-body); font-size: 9.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep);
}
.js .film--live .fl { margin: 0; }
.js .film--live .fl::before { display: none; }
.js .film--live .fl:not(.is-on) { display: none; }
.fl li { font-family: var(--font-mono); font-size: 11.5px; line-height: 26px; white-space: nowrap; }
.js .film--live .fl li { opacity: 0; }
.fl .c { color: var(--fg-faint); font-style: italic; }
.fl .t { color: var(--c-tag); }
.fl .a { color: var(--c-att); }
.fl .v, .fl .s { color: var(--c-str); }
.fl .k { color: var(--c-key); }
.fl .fn { color: var(--c-att); }
.fl .p { color: var(--fg-soft); }
.caret { display: none; }
.js .film--live .caret {
  display: block; position: absolute; left: 6px; top: 16px;
  width: 1.5px; height: 17px; background: var(--fg); opacity: 0;
}

.pv { position: relative; display: grid; grid-template-rows: 34px 1fr; min-height: 0; }
.pv__bar { display: flex; align-items: center; gap: 9px; padding: 0 14px; border-bottom: 1px solid var(--border); }

.seg { display: flex; gap: 2px; margin-left: auto; padding: 2px; border-radius: 7px; background: var(--bg); border: 1px solid var(--border); }
.seg i { font-style: normal; padding: 3px 9px; border-radius: 5px; font-size: 9.5px; font-weight: 600; letter-spacing: .04em; color: var(--fg-faint); }
.seg i.is-on { background: var(--surface); color: var(--fg); box-shadow: 0 1px 2px rgba(20,20,15,.10); }
.js .film--live .seg { opacity: 0; }
.pv__t { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-faint); }
.pv__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-600); }
.js .film--live .pv__dot { opacity: 0; }
.pv__body { position: relative; padding: 18px 20px; min-height: 0; }
.scr + .scr { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border); }
.js .film--live .scr { position: absolute; inset: 18px 20px; margin: 0; padding: 0; border: 0; opacity: 0; }

.bd { display: grid; align-content: start; gap: 11px; height: 100%; }
.js .film--live .bd__p { opacity: 0; }
.bd__p { display: flex; align-items: center; gap: 9px; }
.bd__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-600); }
.bd__name { font-size: 12.5px; font-weight: 600; }
.bd__tag { margin-left: auto; padding: 3px 8px; border-radius: 999px; border: 1px solid var(--border); font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-faint); }
.bd__chips { gap: 5px; }
.chip {
  display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px;
  border: 1px solid var(--border); border-radius: 999px; background: var(--surface);
  font: inherit; font-size: 10.5px; color: var(--fg-soft); cursor: default;
}
.chip.is-on { background: var(--fg); border-color: var(--fg); color: var(--bg); }
.chip__k { width: 7px; height: 7px; border-radius: 2px; }
.chip__k--search { background: var(--green-600); }
.chip__k--referral { background: var(--accent); }
.chip__k--direct { background: var(--green-300); }
.bd__h { margin: 0; font-family: var(--font-display); font-size: 21px; font-weight: var(--wt-display); letter-spacing: var(--track-display); }
.bd__tiles { gap: 9px; }
.tl { flex: 1 1 0; padding: 9px 11px; border: 1px solid var(--border); border-radius: 9px; display: grid; gap: 2px; }
.tl__n { font-family: var(--font-display); font-size: 20px; font-weight: 500; letter-spacing: -.02em; line-height: 1; }
.tl__l { font-size: 9.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-faint); }
.bd__chart { display: block; }
.cht { display: flex; align-items: flex-end; gap: 8px; height: 122px; }
.cw { flex: 1 1 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 2px; height: 100%; }
.cb { display: block; border-radius: 3px; height: 0; }
.cb--search { background: var(--green-600); }
.cb--referral { background: var(--accent); }
.cb--direct { background: var(--green-300); }
.cht__x { display: flex; gap: 8px; margin-top: 6px; }
.cht__x span { flex: 1 1 0; text-align: center; font-family: var(--font-mono); font-size: 9px; color: var(--fg-faint); }
.bd__foot { border-top: 1px solid var(--border); padding-top: 11px; }
.bd__note { font-size: 11px; color: var(--fg-faint); }
.bd__go { margin-left: auto; padding: 8px 14px; font-size: 11.5px; }

.lpgw { height: 100%; }
.lpg { display: grid; align-content: start; gap: 11px; height: 100%; }

.js .film--live .lpgw { transition: none; }
.lpgw.is-mob { width: 232px; margin-inline: auto; height: 100%; padding: 10px; border: 1px solid var(--border); border-radius: 18px; background: var(--bg); }
.lpgw.is-mob .lpg { gap: 8px; }
.lpgw.is-mob .lpg__ln { display: none; }
.lpgw.is-mob .lpg__bg { display: flex; }
.lpgw.is-mob .lpg__h { font-size: 17px; }
.lpgw.is-mob .lpg__s { font-size: 10.5px; }
.lpgw.is-mob .lpg__f { padding: 10px; gap: 6px; }
.lpgw.is-mob .lpg__f i { height: 22px; }
.lpgw.is-mob .lpg__f b { padding: 7px 11px; font-size: 10.5px; }
.lpgw.is-mob .lpg__t { display: none; }
.lpg__bg { display: none; margin-left: auto; flex-direction: column; gap: 3px; }
.lpg__bg b { display: block; width: 15px; height: 2px; border-radius: 2px; background: var(--fg-soft); }
.lpg__nav { display: flex; align-items: center; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.lpg__lg { display: flex; align-items: center; gap: 7px; font-family: var(--font-display); font-size: 14px; font-weight: 600; }
.lpg__lg b { width: 18px; height: 18px; border-radius: 5px; background: var(--green-600); }
.lpg__ln { display: flex; gap: 8px; margin-left: auto; }
.lpg__ln i { width: 34px; height: 7px; border-radius: 4px; background: var(--border); }
.lpg__h { margin: 6px 0 0; font-family: var(--font-display); font-size: 25px; font-weight: var(--wt-display); line-height: 1.1; letter-spacing: var(--track-display); }
.lpg__s { margin: 0; font-size: 12.5px; color: var(--fg-soft); max-width: 42ch; }
.lpg__f { display: grid; gap: 7px; margin-top: 4px; padding: 13px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); }
.lpg__f i { height: 26px; border-radius: 6px; background: var(--surface); border: 1px solid var(--border); }
.lpg__f b { justify-self: start; padding: 8px 14px; border-radius: 999px; background: var(--accent); color: var(--ink); font-size: 11.5px; }
.lpg__t { display: flex; gap: 10px; margin-top: 2px; }
.lpg__t i { flex: 1 1 0; height: 13px; border-radius: 4px; background: var(--border); }

.dsh { display: grid; align-content: start; gap: 12px; height: 100%; }
.dsh__k { display: flex; gap: 9px; }
.dsh__k i { position: relative; flex: 1 1 0; padding: 9px 11px; border: 1px solid var(--border); border-radius: 9px; display: grid; gap: 6px; }
.dsh__k i:nth-child(2) .dsh__n { position: absolute; right: 11px; bottom: 8px; color: var(--accent-deep); }
.dsh__k em { font-style: normal; font-size: 9.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-faint); }
.dsh__k b { height: 15px; width: 62%; border-radius: 4px; background: var(--green-300); }
.dsh__k i:nth-child(2) b { width: 44%; background: var(--accent); }
.dsh__k i:nth-child(3) b { width: 52%; }
.dsh__c { position: relative; display: flex; align-items: flex-end; gap: 7px; height: 132px; padding: 11px; border: 1px solid var(--border); border-radius: 9px; }
.dsh__tip {
  position: absolute; left: 0; top: 0; padding: 5px 9px; border-radius: 7px;
  background: var(--fg); color: var(--bg); font-size: 10.5px; font-weight: 600; white-space: nowrap;
  transform: translate(-50%, -100%); pointer-events: none;
}
.js .film--live .dsh__tip { opacity: 0; }
.dsh__n { font-family: var(--font-display); font-size: 17px; font-weight: 500; letter-spacing: -.02em; line-height: 1; }
.js .film--live .dsh__n { opacity: 0; }
.dsh__c i { flex: 1 1 0; height: calc(var(--h) * 100%); border-radius: 3px 3px 0 0; background: var(--green-300); }
.dsh__r { display: grid; gap: 6px; }
.dsh__r i { height: 13px; border-radius: 4px; background: var(--border); }
.dsh__r i:nth-child(2) { width: 82%; }
.dsh__r i:nth-child(3) { width: 64%; }

.crm { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; height: 100%; align-content: start; }
.crm__c { display: grid; align-content: start; gap: 7px; padding: 10px; border: 1px solid var(--border); border-radius: 9px; background: var(--bg); }
.crm__c em { font-style: normal; font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-faint); }
.crm__c em b { color: var(--fg); }
.cc { height: 34px; border-radius: 7px; background: var(--surface); border: 1px solid var(--border); }
.cc.is-won { border-color: var(--green-600); background: var(--green-050); }

.cc--drop { border-style: dashed; background: none; }
.js .film--live .cc--ghost, .js .film--live .cc--drop { opacity: 0; }

.cc--live { display: none; }
.js .film--live .cc--live { display: block; position: absolute; left: 0; top: 0; width: 10px; opacity: 0; box-shadow: var(--p-lift); will-change: transform; }

.toast {
  display: grid; grid-template-columns: 22px 1fr; column-gap: 10px; align-items: center;
  margin: 0 20px 16px; padding: 10px 14px; border-radius: 10px;
  background: var(--fg); color: var(--bg); font-size: 12px; width: max-content; max-width: 100%;
}
.js .film--live .toast { position: absolute; right: 20px; bottom: 14px; margin: 0; opacity: 0; box-shadow: var(--p-lift); will-change: transform; }
.toast i { grid-row: 1 / 3; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); }
.toast b { font-family: var(--font-mono); font-size: 11.5px; }
.toast span { font-size: 11px; opacity: .8; }

.endc { position: relative; z-index: 3; margin-top: 30px; text-align: center; display: grid; justify-items: center; gap: 12px; }
.js .film--live .endc { position: absolute; left: var(--pad); right: var(--pad); top: 50%; margin: 0; transform: translateY(-52%); pointer-events: none; }
.endc__h { margin: 0; font-size: clamp(1.8rem, 1.2rem + 2.2vw, 3rem); }
.endc__p { margin: 0; color: var(--fg-soft); max-width: 46ch; }
.endc__l { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; }
.endc__l li { position: relative; padding-left: 16px; font-size: var(--fs-sm); color: var(--fg-soft); }
.endc__l li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--green-600); }
.endc__go { margin-top: 14px; }
.js .film--live .endc__h, .js .film--live .endc__p, .js .film--live .endc__l li, .js .film--live .endc__go { opacity: 0; }
.js .film--live .endc__go { pointer-events: auto; }

.ptr { display: none; }
.js .film--live .ptr {
  display: block; position: absolute; left: 0; top: 0; z-index: 8;
  width: 16px; height: 23px; pointer-events: none; opacity: 0;
  background: var(--fg);
  clip-path: polygon(0 0, 0 100%, 27% 78%, 45% 100%, 62% 88%, 45% 66%, 100% 62%);
  will-change: transform;
}
.js .film--live .ptr b {
  position: absolute; left: -12px; top: -12px; width: 38px; height: 38px;
  border-radius: 50%; border: 2px solid var(--accent); opacity: 0;
}

.hud { display: none; }
.js .film--live .hud {
  position: absolute; left: var(--pad); right: var(--pad); bottom: 14px; z-index: 9;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--fg-faint); opacity: 0;
}
.js .film--live .hud[hidden] { display: none; }
.hud__tc { font-family: var(--font-mono); letter-spacing: .04em; font-variant-numeric: tabular-nums; min-width: 4.5ch; }
.hud > .hud__track { flex: 1 1 auto; position: relative; height: 2px; border-radius: 2px; background: var(--border); overflow: hidden; }
.hud__head { position: absolute; inset: 0; background: var(--fg); transform: scaleX(0); transform-origin: 0 50%; }
.hud__ch { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.hud__ch button {
  border: 0; background: none; color: var(--fg-faint); font: inherit;
  letter-spacing: inherit; text-transform: inherit;
  padding: 8px 9px; border-radius: var(--r-pill); cursor: pointer;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.hud__ch button:hover { color: var(--fg); }
.hud__ch button.is-here { background: var(--surface); color: var(--fg); box-shadow: 0 1px 3px rgba(20,20,15,.08); }
.hud__btn {
  border: 1px solid var(--border); background: var(--surface); color: var(--fg);
  font: inherit; letter-spacing: inherit; text-transform: inherit;
  padding: 8px 12px; border-radius: var(--r-pill); cursor: pointer; min-width: 6.5em;
  transition: border-color .2s var(--ease);
}
.hud__btn:hover { border-color: var(--fg); }

@media (min-width: 1600px) {
  .js .film--live .caps {
    left: auto; right: var(--pad); top: var(--pad); bottom: var(--hud-h);
    width: var(--cap-w); height: auto; text-align: left;
  }
  .js .film--live .cap { top: 50%; font-size: clamp(1.6rem, .7rem + 1.9vw, 2.8rem); line-height: 1.1; }
  .js .film--live .cap__k { font-size: 12px; margin-bottom: 14px; }
  .js .film--live .winbox { top: var(--pad); right: calc(var(--pad) + var(--cap-w) + var(--col-gap)); }
}

.film--phone { --cap-h: 92px; --hud-h: 58px; --win-w: 380px; --win-h: 556px; }
@media (max-width: 900px) {
  :root { --pad: 10px; }
  .js .film--live .film__stage { min-height: 600px; }
  .js .film--live .hud { flex-wrap: wrap; gap: 6px 4px; bottom: 10px; font-size: 10px; }
  .hud__tc { display: none; }
  .hud > .hud__track { flex-basis: 100%; order: -1; }
  .hud__ch { flex: 1 1 auto; }
  .hud__ch button { padding: 6px 6px; letter-spacing: .04em; }
  .hud__btn { padding: 6px 9px; min-width: 0; margin-left: auto; }
  .cap { font-size: clamp(1.25rem, 1rem + 2.4vw, 1.6rem); }
  .cap__k { font-size: 10px; margin-bottom: 5px; }
  .endc__h { font-size: clamp(1.6rem, 1.2rem + 3vw, 2.2rem); }
  .endc__l { gap: 6px 14px; }
  .endc__l li { font-size: 12.5px; }
  .endc__go { margin-top: 10px; }
  .ptr { width: 14px; height: 20px; }
}
@media (max-width: 400px) {
  .hud__ch button { padding: 6px 4px; letter-spacing: 0; }
  .hud__btn { padding: 6px 7px; }
}

.hud__s { display: none; }
@media (max-width: 900px) {
  .hud__l { display: none; }
  .hud__s { display: inline; }
}

.film--phone .chrome { gap: 8px; padding: 0 10px; }
.film--phone .chrome__dots, .film--phone .chrome__url { display: none; }
.film--phone .tab { padding: 7px 8px 8px; font-size: 10px; }
.film--phone .chrome__save { margin-left: auto; font-size: 8.5px; }
.film--phone .ide { grid-template-columns: 1fr; grid-template-rows: 186px 1fr; }
.js .film--live.film--phone .ide { height: calc(var(--win-h) - 44px); }
.film--phone .ed { border-right: 0; border-bottom: 1px solid var(--border); grid-template-columns: 32px 1fr; }
.film--phone .ed__gut { padding-top: 12px; }
.film--phone .ed__gut span { padding-right: 8px; font-size: 10px; line-height: 21px; }
.film--phone .ed__code { padding: 12px 10px 0 5px; }
.film--phone .fl li { font-size: 10px; line-height: 21px; }
.js .film--live.film--phone .caret { top: 12px; height: 14px; left: 5px; }
.film--phone .pv__body { padding: 12px 13px; }
.js .film--live.film--phone .scr { inset: 12px 13px; }
.film--phone .bd { gap: 7px; }
.film--phone .bd__name { font-size: 11.5px; }
.film--phone .bd__tag { display: none; }
.film--phone .chip { padding: 4px 8px; font-size: 9.5px; }
.film--phone .bd__h { font-size: 16px; }
.film--phone .tl { padding: 7px 8px; }
.film--phone .tl__n { font-size: 16px; }
.film--phone .tl__l { font-size: 8px; }
.film--phone .cht { height: 72px; gap: 5px; }
.film--phone .cht__x { gap: 5px; }
.film--phone .cht__x span { font-size: 7.5px; }
.film--phone .bd__note { font-size: 10px; }
.film--phone .bd__go { padding: 6px 10px; font-size: 10px; }
.film--phone .lpg__t { display: none; }   
.film--phone .lpg__h { font-size: 18px; }
.film--phone .lpg__s { font-size: 11px; }
.film--phone .lpg__f { padding: 10px; gap: 6px; }
.film--phone .lpg__f i { height: 22px; }
.film--phone .dsh__c { height: 84px; }
.film--phone .crm__c { padding: 8px; gap: 5px; }
.film--phone .cc { height: 24px; }
.film--phone .crm__c em { font-size: 8.5px; }
.film--phone .seg { padding: 1px; }
.film--phone .seg i { padding: 2px 6px; font-size: 8.5px; }
.film--phone .lpgw.is-mob { width: 170px; padding: 7px; border-radius: 14px; }
.film--phone .lpgw.is-mob .lpg__h { font-size: 13px; }
.film--phone .dsh__tip { font-size: 9px; padding: 4px 7px; }
.film--phone .dsh__n { font-size: 14px; }
.js .film--live.film--phone .toast { right: 13px; bottom: 12px; }
.film--phone .toast { padding: 8px 11px; font-size: 10.5px; }
.film--phone .toast b { font-size: 10.5px; }
.film--phone .toast span { font-size: 9.5px; }

@media (prefers-reduced-motion: reduce) {
  .orbs--film i { animation: none; }
  .hud__ch button, .hud__btn { transition: none; }
  .chip, .kind { transition: none; }
}

.spec { max-width: 760px; margin: 0; border-top: 1px solid var(--border); }
.spec__row {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: baseline;
  padding: 18px 0; margin: 0; border-bottom: 1px solid var(--border);
}

.spec__row[hidden] { display: none; }
.spec dt { font-size: var(--fs-body); color: var(--fg-soft); }
.spec dd { margin: 0; text-align: right; }
.spec dd span {
  display: block; font-family: var(--font-display); font-weight: var(--wt-display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.2rem); line-height: 1; color: var(--green-600);
  font-variant-numeric: tabular-nums;
}
.spec dd small { display: block; margin-top: 6px; font-size: var(--fs-label); color: var(--fg-faint); }

.kinds { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 22px); }
.kind {
  padding: 26px 24px 28px; border: 1px solid var(--border); border-radius: var(--r-card); background: var(--surface);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.kind:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,46,41,.11); }
.kind__n {
  display: grid; place-content: center; width: 44px; height: 44px; margin-bottom: 18px; border-radius: 50%;
  background: var(--green-600); color: var(--bone);
  font-family: var(--font-display); font-weight: var(--wt-display); font-size: .95rem;
}
.kind h3 { font-size: 1.2rem; }
.kind p { margin-top: 10px; font-size: var(--fs-sm); color: var(--fg-soft); line-height: 1.6; }

@media (max-width: 940px) { .kinds { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .kinds { grid-template-columns: 1fr; } }

.acts { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 3vw, 34px); }
.act { padding-top: 18px; border-top: 1px solid var(--border); }
.act__k { display: block; margin-bottom: 8px; font-size: var(--fs-label); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); }
.act h3 { font-size: 1.25rem; }
.act p { margin-top: 10px; font-size: var(--fs-sm); color: var(--fg-soft); line-height: 1.65; max-width: 46ch; }
@media (max-width: 760px) { .acts { grid-template-columns: 1fr; } }
