/* src/web/styles/app.css */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/manrope-latin-ext-400-normal.woff2) format("woff2");
  unicode-range:
    U+0100-02AF,
    U+0304,
    U+0308,
    U+0329,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20C0,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/manrope-latin-400-normal.woff2) format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/manrope-latin-ext-500-normal.woff2) format("woff2");
  unicode-range:
    U+0100-02AF,
    U+0304,
    U+0308,
    U+0329,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20C0,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/manrope-latin-500-normal.woff2) format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/fonts/manrope-latin-ext-600-normal.woff2) format("woff2");
  unicode-range:
    U+0100-02AF,
    U+0304,
    U+0308,
    U+0329,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20C0,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/fonts/manrope-latin-600-normal.woff2) format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/manrope-latin-ext-700-normal.woff2) format("woff2");
  unicode-range:
    U+0100-02AF,
    U+0304,
    U+0308,
    U+0329,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20C0,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/manrope-latin-700-normal.woff2) format("woff2");
}
:root {
  --paper: #f7f8fa;
  --ink: #202326;
  --muted: #646a70;
  --line: #dbdee1;
  --night: #171a1d;
  --surface: #24282c;
  --surface-2: #2e3338;
  --light: #f2f3f4;
  --soft: #aeb5ba;
  --hairline: rgba(255, 255, 255, 0.13);
  --hairline-strong: rgba(255, 255, 255, 0.24);
  --accent: #c8dacd;
  --plus-panel: #e7eee8;
  --plus-line: #b8cbbe;
  --focus: #548368;
  --alert: #f0938a;
  --r-control: 8px;
  --r-thumb: 7px;
  --r-hero: 12px;
  --r-panel: 16px;
  --shell-max: 1280px;
  --shell-pad: 48px;
  --tap: 48px;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html,
body {
  margin: 0;
  height: 100%;
  background: var(--night);
  color: var(--light);
  font-family:
    "Manrope",
    "Segoe UI",
    system-ui,
    -apple-system,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
body {
  overflow: hidden;
}
body.on-paper {
  background: var(--paper);
  color: var(--ink);
  overflow: auto;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 4px;
}
body.on-paper :focus-visible {
  outline-color: #2f5a41;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background: #3a4045;
  border-radius: 10px;
}
body.on-paper ::-webkit-scrollbar-thumb {
  background: #c9ced2;
}
::-webkit-scrollbar-track {
  background: transparent;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
.wrap {
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}
.wordmark {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--tap);
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--r-control);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  white-space: nowrap;
  transition:
    background-color .15s ease,
    border-color .15s ease,
    color .15s ease;
}
.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover:not(:disabled) {
  background: #34393d;
}
.btn-line {
  border-color: #bdc3c7;
  color: var(--ink);
}
.btn-line:hover:not(:disabled) {
  background: #eceef0;
}
.btn-light {
  background: var(--light);
  color: #1b1f22;
}
.btn-light:hover:not(:disabled) {
  background: #fff;
}
.btn-outline {
  border-color: var(--hairline-strong);
  color: var(--light);
}
.btn-outline:hover:not(:disabled) {
  background: var(--surface);
}
.btn-quiet {
  color: var(--soft);
}
.btn-quiet:hover:not(:disabled) {
  color: var(--light);
}
.btn-danger {
  border-color: rgba(240, 147, 138, .45);
  color: var(--alert);
}
.btn-danger:hover:not(:disabled) {
  background: rgba(180, 68, 58, .16);
}
.btn-sm {
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px;
}
.btn-block {
  width: 100%;
}
.link-underline {
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  background: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: inherit;
}
.nav-text {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  color: inherit;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
}
.nav-text:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.landing {
  background: var(--paper);
  color: var(--ink);
  min-height: 100dvh;
}
.landing-nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.landing-nav .navlinks {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}
.landing-nav .navlinks button:not(.btn) {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  color: inherit;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
}
.landing-nav .navlinks button:not(.btn):hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.intro {
  padding: 66px 0 46px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: end;
}
.intro h1 {
  font-size: clamp(50px, 5.4vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.047em;
  font-weight: 600;
  max-width: 780px;
}
.intro-side {
  max-width: 300px;
  padding-bottom: 4px;
}
.intro-side p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 23px;
}
.intro-side .note {
  display: block;
  font-size: 12px;
  margin-top: 13px;
  color: var(--muted);
}
.showcase {
  background: var(--night);
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 28px 55px -30px rgba(25, 42, 57, .38);
}
.showcase-nav {
  height: 57px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 27px;
  font-size: 12px;
  color: #acb4b6;
}
.showcase-nav .mark {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.05em;
  margin-right: 22px;
}
.showcase-nav .on {
  color: #fff;
}
.showcase-nav .right {
  margin-left: auto;
}
.scene {
  height: 400px;
  position: relative;
  overflow: hidden;
}
.scene > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}
.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(16, 39, 43, .85) 0%,
      rgba(16, 39, 43, .4) 36%,
      transparent 68%),
    linear-gradient(
      0deg,
      rgba(23, 26, 29, .88),
      transparent 45%);
}
.scene-copy {
  position: absolute;
  left: 42px;
  bottom: 45px;
  z-index: 1;
  max-width: 420px;
}
.scene-copy .tag {
  font-size: 12px;
  color: #d4dfda;
  display: block;
  margin-bottom: 10px;
}
.scene-copy h2 {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.03;
}
.scene-copy p {
  font-size: 14px;
  line-height: 1.6;
  color: #d8dfdd;
  max-width: 330px;
  margin: 14px 0 20px;
}
.scene-copy .btn {
  min-height: 41px;
  padding: 0 20px;
  font-size: 12px;
}
.scene-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.showcase-shelf {
  padding: 20px 28px 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mini-continue {
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 0;
}
.mini-continue .thumb {
  width: 116px;
  height: 66px;
  flex: none;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.mini-continue .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-continue .thumb i {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
}
.mini-continue b {
  font-size: 13px;
  font-weight: 500;
}
.mini-continue p {
  font-size: 11px;
  color: var(--soft);
  margin-top: 6px;
}
.caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  color: var(--muted);
  padding: 17px 2px;
}
.device-line {
  display: flex;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
  padding: 30px 0 65px;
  color: #666e73;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.device-line button {
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  font-size: 14px;
  border-bottom: 1px solid #b9c0c5;
  padding: 0 0 2px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}
.feature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: center;
  padding: 110px 0;
}
.section-title {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.037em;
}
.feature p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin: 22px 0;
  max-width: 390px;
}
.feature-demo {
  padding: 28px;
  background: #e9edea;
  border-radius: var(--r-panel);
}
.source-window {
  background: #fff;
  border-radius: 9px;
  padding: 24px;
  box-shadow: 0 12px 35px -25px rgba(34, 51, 45, .44);
}
.source-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #606b64;
  margin-bottom: 26px;
}
.source-head .tag {
  background: #dfe8e1;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
}
.source-window h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 9px;
}
.source-window > p {
  font-size: 13px;
  margin-bottom: 22px;
  line-height: 1.5;
  color: var(--muted);
}
.source-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid #e6e9e6;
  font-size: 13px;
  color: var(--ink);
}
.source-row .ico {
  width: 32px;
  height: 32px;
  background: #e9ede9;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex: none;
  color: #4c5a51;
}
.source-row .ico svg {
  width: 15px;
  height: 15px;
}
.source-row small {
  margin-left: auto;
  color: #727971;
}
.pricing {
  padding-block: 82px 96px;
  border-top: 1px solid var(--line);
}
.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 40px;
}
.section-intro p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 340px;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  border: 1px solid #d7dcde;
  border-radius: var(--r-hero);
  padding: 28px;
  background: #fff;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.plan.is-plus {
  background: var(--plus-panel);
  border-color: var(--plus-line);
}
.plan h3 {
  font-size: 22px;
  font-weight: 600;
}
.plan .desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 9px;
  min-height: 44px;
  line-height: 1.6;
}
.plan .amount {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.042em;
  margin-top: 22px;
  line-height: 1.2;
}
.plan .amount small {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}
.plan .renewal {
  font-size: 13px;
  margin-top: 8px;
  min-height: 38px;
  color: #505c54;
  line-height: 1.6;
}
.plan ul {
  list-style: none;
  padding: 22px 0;
  margin: 14px 0 18px;
  border-top: 1px solid #d7dcde;
  font-size: 14px;
}
.plan li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  line-height: 2.1;
}
.plan li svg {
  width: 13px;
  height: 13px;
  flex: none;
  color: #58715f;
  transform: translateY(2px);
}
.plan .btn {
  margin-top: auto;
  width: 100%;
}
.plan .current-mark {
  font-size: 12px;
  color: #58715f;
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}
.fine {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 20px;
}
.paper-sheet {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-panel);
  padding: 40px 40px 48px;
  margin-bottom: 32px;
}
.paper-sheet .pricing {
  border-top: 0;
  padding: 0;
}
.paper-sheet .section-intro p {
  color: var(--muted);
}
.faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  padding-bottom: 100px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 18px;
  color: var(--muted);
}
.faq details[open] summary::after {
  content: "\2212";
}
.faq details p {
  padding-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 540px;
}
.landing-footer {
  border-top: 1px solid var(--line);
  padding-block: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: var(--muted);
}
.landing-footer .wordmark {
  color: var(--ink);
}
.landing-footer .legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.landing-footer .legal button {
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  font-size: 12px;
  border-bottom: 1px solid #c6cbcf;
  padding: 0 0 2px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}
.app {
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 84px 1fr;
  background: var(--night);
}
.app-navbar {
  min-width: 0;
  overflow: hidden;
}
.app-navbar {
  border-bottom: 1px solid var(--hairline);
}
.app-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
  height: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}
.app-nav .wordmark {
  color: var(--light);
  margin-right: 24px;
  flex: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.app-nav .tabs {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
  height: 100%;
}
.app-nav .spacer {
  flex: 1;
}
.nav-tab {
  position: relative;
  height: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--soft);
  background: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-tab:hover {
  color: var(--light);
}
.nav-tab.active {
  color: #fff;
}
.nav-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
}
.nav-tab .lock {
  color: var(--soft);
  display: inline-grid;
}
.nav-tab .lock svg {
  width: 12px;
  height: 12px;
}
.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #62696d;
  padding: 9px 4px 9px 0;
  width: 230px;
  color: var(--soft);
}
.nav-search svg {
  width: 15px;
  height: 15px;
  flex: none;
}
.nav-search input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: none;
  font-size: 13px;
  color: var(--light);
}
.nav-search input::placeholder {
  color: var(--soft);
}
.nav-search:focus-within {
  border-color: var(--light);
}
.quota-tag {
  font-size: 12px;
  color: var(--soft);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.quota-tag.low {
  color: #e8c9a0;
}
.plan-tag {
  font-size: 12px;
  color: var(--soft);
}
.avatar {
  width: 34px;
  height: 34px;
  flex: none;
  border: 1px solid #727b80;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  background: none;
  color: var(--light);
  cursor: pointer;
}
.avatar:hover {
  border-color: var(--light);
}
.account-menu {
  position: fixed;
  z-index: 60;
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-control);
  padding: 6px;
  min-width: 230px;
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, .8);
  display: grid;
  gap: 2px;
}
.account-menu .who {
  padding: 10px 12px 12px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 4px;
}
.account-menu .who b {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.account-menu .who span {
  font-size: 12px;
  color: var(--soft);
  word-break: break-all;
}
.account-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: none;
  color: var(--soft);
  cursor: pointer;
  text-align: left;
  font-size: 14px;
}
.account-menu button:hover {
  background: var(--surface-2);
  color: var(--light);
}
.account-menu button svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.app-main {
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 72px;
}
.page-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 37px 0 27px;
}
.page-search {
  display: none;
}
.page-intro h1 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.page-intro .sub {
  font-size: 13px;
  color: var(--soft);
  margin-top: 6px;
}
.subnav {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--hairline);
}
.subnav button {
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--soft);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 0 14px;
}
.subnav button:hover {
  color: var(--light);
}
.subnav button.active {
  color: #fff;
}
.subnav button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--light);
}
.shelf-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 32px 0 16px;
}
.shelf-head h2 {
  font-size: 18px;
  font-weight: 600;
}
.shelf-head button {
  font-size: 12px;
  color: var(--soft);
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}
.shelf-head button:hover {
  color: var(--light);
}
.app-hero {
  border-radius: var(--r-hero);
  overflow: hidden;
}
.scene-plain {
  background:
    linear-gradient(
      140deg,
      #23292f,
      #1a1e22 70%);
  height: 300px;
}
.scene-plain::after {
  background: none;
}
.app-hero .scene {
  height: 400px;
}
.app-hero .scene-copy {
  left: 38px;
  bottom: 34px;
  max-width: 560px;
}
.app-hero .scene-copy h2 {
  font-size: 40px;
  line-height: 1.08;
}
.app-hero .scene-copy .scene-actions {
  margin-top: 18px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.poster-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px 18px;
}
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 240px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}
.rail > * {
  scroll-snap-align: start;
}
.media {
  display: block;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 100%;
  min-width: 0;
  color: inherit;
}
.media .frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-thumb);
  overflow: hidden;
  background: var(--surface);
}
.media.poster .frame {
  aspect-ratio: 2 / 3;
}
.media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media:hover .frame img {
  filter: brightness(1.08);
}
.media b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 11px;
  line-height: 1.35;
}
.media p {
  font-size: 12px;
  color: var(--soft);
  margin-top: 5px;
}
.clamp2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.clamp1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.badge {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: rgba(12, 16, 19, .82);
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.badge.live {
  background: #e8e3d6;
  color: #2b2f2a;
  letter-spacing: .04em;
}
.progress-line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
}
.fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(12, 16, 19, .74);
  color: var(--light);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .14s ease;
}
.media:hover .fav-btn,
.fav-btn.on,
.fav-btn:focus-visible {
  opacity: 1;
}
.fav-btn.on {
  color: var(--accent);
}
.fav-btn svg {
  width: 16px;
  height: 16px;
}
.ph {
  position: absolute;
  inset: 0;
  display: grid;
  background: var(--surface);
}
.ph-video {
  place-items: center;
  align-content: center;
  gap: 9px;
  color: #6d767c;
}
.ph-video svg {
  width: 28px;
  height: 28px;
}
.ph-video span {
  font-size: 11px;
}
.ph-poster {
  align-content: space-between;
  padding: 18px 16px;
  background:
    linear-gradient(
      168deg,
      #2b3036,
      #1d2126 62%);
}
.ph-poster .t {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #e6e9eb;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ph-poster .k {
  font-size: 11px;
  color: #7c858b;
}
.channel-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 28px;
}
.channel-row {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 0;
  border-top: 1px solid var(--hairline);
  padding: 16px 0;
  min-height: 76px;
  width: 100%;
  background: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
}
.channel-row:hover {
  border-top-color: var(--hairline-strong);
}
.channel-mark {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 6px;
  background: #ecebe4;
  color: #303831;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 2px;
}
.channel-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.channel-body {
  min-width: 0;
  flex: 1;
}
.channel-body b {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.channel-body p {
  font-size: 11px;
  color: var(--soft);
  margin-top: 5px;
}
.channel-body .next {
  color: #7f888e;
}
.fav-inline {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: none;
  color: #6d767c;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
}
.channel-row:hover .fav-inline,
.fav-inline.on,
.fav-inline:focus-visible {
  opacity: 1;
}
.fav-inline.on {
  color: var(--accent);
}
.fav-inline svg {
  width: 16px;
  height: 16px;
}
.episode-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
  width: 100%;
  background: none;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
}
.episode-row .shot {
  width: 160px;
  height: 90px;
  flex: none;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
}
.episode-row.no-shot {
  padding: 14px 0;
}
.episode-row .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.episode-row .grow {
  min-width: 0;
  flex: 1;
}
.episode-row b {
  font-size: 14px;
  font-weight: 600;
}
.episode-row p {
  font-size: 12px;
  color: var(--soft);
  margin-top: 6px;
  line-height: 1.6;
}
.with-aside {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
}
.aside-list {
  display: grid;
  gap: 2px;
  position: sticky;
  top: 8px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.aside-list button {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--soft);
  font-size: 13px;
  padding: 10px 8px;
  border-radius: 6px;
  min-height: 40px;
}
.aside-list button:hover {
  background: var(--surface);
  color: var(--light);
}
.aside-list button.active {
  color: #fff;
  background: var(--surface);
}
.aside-list button span:last-child {
  font-size: 11px;
  color: #6d767c;
}
.state {
  padding: 36px 0;
  max-width: 560px;
  display: grid;
  gap: 14px;
  justify-items: start;
}
.state h3 {
  font-size: 19px;
  font-weight: 600;
}
.state p {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
}
body.on-paper .state p {
  color: var(--muted);
}
.state .btn {
  justify-self: start;
}
.state .row-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.inline-note {
  font-size: 13px;
  color: var(--soft);
}
.error-note {
  border-left: 2px solid var(--alert);
  padding: 4px 0 4px 14px;
  font-size: 14px;
  color: #f3b5ae;
}
.ok-note {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 14px;
  font-size: 14px;
  color: #cfe0d4;
}
body.on-paper .error-note {
  color: #8d3129;
  border-color: #c2685f;
}
body.on-paper .ok-note {
  color: #3d5a46;
  border-color: #8fae99;
}
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.skeleton-grid.posters {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.sk {
  border-radius: var(--r-thumb);
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(
      100deg,
      #202429 30%,
      #2a2f35 50%,
      #202429 70%);
  background-size: 280% 100%;
  animation: sk 1.25s linear infinite;
}
.skeleton-grid.posters .sk {
  aspect-ratio: 2 / 3;
}
.sk.line {
  aspect-ratio: auto;
  height: 12px;
  margin-top: 10px;
  width: 76%;
  border-radius: 3px;
}
.sk.line.short {
  width: 44%;
}
@keyframes sk {
  from {
    background-position: 140% 0;
  }
  to {
    background-position: -40% 0;
  }
}
.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--soft);
}
.field .hint {
  font-size: 12px;
  color: #7c858b;
}
.field input,
.field select,
.field textarea {
  min-height: var(--tap);
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-control);
  padding: 10px 14px;
  outline: none;
  color: var(--light);
}
.field input:focus,
.field select:focus {
  border-color: var(--light);
}
.field.bad input {
  border-color: var(--alert);
}
.field .field-error {
  font-size: 12px;
  color: #f3b5ae;
}
body.on-paper .field label {
  color: var(--muted);
}
body.on-paper .field .hint {
  color: #7b8288;
}
body.on-paper .field input,
body.on-paper .field select {
  background: #fff;
  border-color: #ccd1d5;
  color: var(--ink);
}
body.on-paper .field input:focus {
  border-color: var(--ink);
}
body.on-paper .field .field-error {
  color: #8d3129;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-panel);
  padding: 24px;
}
.panel h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.panel > p {
  font-size: 13px;
  color: var(--soft);
  margin-bottom: 18px;
  line-height: 1.6;
}
.rows {
  display: grid;
}
.row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
  min-width: 0;
}
.row:first-child {
  border-top: 0;
}
.row .grow {
  flex: 1;
  min-width: 0;
}
.row b {
  font-size: 14px;
  font-weight: 600;
}
.row .meta {
  font-size: 12px;
  color: var(--soft);
  margin-top: 4px;
  line-height: 1.6;
}
.row .actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.settings {
  max-width: 900px;
}
.settings section {
  padding: 36px 0;
  border-top: 1px solid var(--hairline);
}
.settings section:first-of-type {
  border-top: 0;
  padding-top: 8px;
}
.settings h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.settings .lead {
  font-size: 13px;
  color: var(--soft);
  margin-bottom: 18px;
  line-height: 1.7;
  max-width: 62ch;
}
.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0 4px;
}
.chip {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: none;
  border: 1px solid var(--hairline-strong);
  color: var(--soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}
.chip:hover {
  color: var(--light);
  border-color: var(--light);
}
.chip.active {
  background: var(--light);
  border-color: var(--light);
  color: #1b1f22;
}
.tag-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--soft);
}
.tag-test {
  background: #3a3226;
  color: #e8c9a0;
}
body.on-paper .tag-test {
  background: #f1e7d6;
  color: #6d5426;
}
.tag-plus {
  background: var(--plus-panel);
  color: #3d5a46;
}
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 13, 15, .74);
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal {
  width: min(520px, 100%);
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-panel);
  padding: 26px;
  display: grid;
  gap: 14px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9);
}
.modal h2 {
  font-size: 20px;
  font-weight: 600;
}
.modal p {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
}
.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 6px;
}
.toasts {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 120;
  display: grid;
  gap: 8px;
  width: min(460px, calc(100% - 32px));
}
.toast {
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-control);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--light);
  box-shadow: 0 20px 40px -26px rgba(0, 0, 0, .9);
}
.toast.error {
  border-color: rgba(240, 147, 138, .5);
}
.toast.ok {
  border-color: rgba(200, 218, 205, .5);
}
.auth {
  min-height: 100dvh;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-form-side {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 48px;
  max-width: 600px;
  margin-inline: auto;
  width: 100%;
}
.auth-form {
  width: min(440px, 100%);
}
.auth-form h1 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.auth-form .lead {
  font-size: 15px;
  color: var(--muted);
  margin: 14px 0 28px;
  line-height: 1.65;
}
.auth-switch {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
}
.auth-switch button {
  background: none;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding: 0 0 2px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}
.auth-alt {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  display: grid;
  gap: 10px;
  justify-items: start;
}
.auth-visual {
  position: relative;
  overflow: hidden;
  background: var(--night);
}
.auth-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      0deg,
      rgba(23, 26, 29, .72),
      transparent 58%);
}
.auth-visual .quote {
  position: absolute;
  left: 44px;
  bottom: 44px;
  right: 44px;
  z-index: 1;
  color: #fff;
}
.auth-visual .quote h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.auth-visual .quote p {
  font-size: 13px;
  color: #d8dfdd;
  margin-top: 10px;
}
.auth-top {
  position: absolute;
  top: 34px;
  left: 48px;
  z-index: 2;
}
.auth-top .wordmark {
  color: var(--ink);
  font-size: 30px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.pair-panel {
  width: min(460px, 100%);
}
.pair-code {
  font-size: clamp(32px, 7vw, 44px);
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
  padding: 16px;
  margin: 14px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-control);
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.qr-frame {
  display: grid;
  place-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-control);
}
.qr-frame svg {
  width: 180px;
  height: 180px;
}
.player {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  display: grid;
  place-items: center;
}
.player canvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.player .veil {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  background: rgba(0, 0, 0, .82);
  text-align: center;
  padding: 24px;
}
.player .veil p {
  font-size: 14px;
  color: var(--soft);
}
.spinner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(242, 243, 244, .2);
  border-top-color: var(--light);
  animation: spin .9s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.player-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(rgba(0, 0, 0, .72), transparent);
  transition: opacity .25s ease;
}
.player-top .titlebox {
  min-width: 0;
}
.player-top .title {
  font-size: 17px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.player-top .sub {
  font-size: 12px;
  color: var(--soft);
  margin-top: 2px;
}
.player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .82) 45%);
  display: grid;
  gap: 14px;
  transition: opacity .25s ease;
}
.player.idle .player-controls,
.player.idle .player-top {
  opacity: 0;
  pointer-events: none;
}
.seek-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.seek-row .t {
  font-size: 12px;
  color: var(--soft);
  font-variant-numeric: tabular-nums;
  min-width: 52px;
}
.seek-row .t.right {
  text-align: right;
}
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  flex: 1;
  min-width: 0;
  height: 26px;
  cursor: pointer;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(242, 243, 244, .28);
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--light);
  margin-top: -5px;
  border: 0;
}
input[type=range]::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(242, 243, 244, .28);
}
input[type=range]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: var(--light);
}
input[type=range]:disabled {
  opacity: .4;
}
.ctl-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ctl {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(242, 243, 244, .18);
  background: rgba(20, 24, 27, .6);
  color: var(--light);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.ctl:hover {
  background: rgba(46, 51, 56, .9);
}
.ctl svg {
  width: 19px;
  height: 19px;
}
.ctl.wide {
  width: auto;
  padding: 0 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
}
.ctl.play {
  width: 56px;
  height: 56px;
  background: var(--light);
  color: #14181b;
  border-color: transparent;
}
.ctl.play svg {
  width: 21px;
  height: 21px;
}
.ctl:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.ctl-vol {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ctl-vol input[type=range] {
  width: 110px;
  flex: none;
}
.skip-hint {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12, 16, 19, .78);
  border-radius: 14px;
  padding: 16px 22px;
  font-size: 22px;
  font-weight: 700;
  display: grid;
  justify-items: center;
  gap: 4px;
}
.skip-hint.back {
  left: 8%;
}
.skip-hint.fwd {
  right: 8%;
}
.skip-hint .target {
  font-size: 13px;
  font-weight: 500;
  color: var(--soft);
  font-variant-numeric: tabular-nums;
}
.player-menu {
  position: absolute;
  right: 24px;
  bottom: 104px;
  z-index: 5;
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-control);
  padding: 6px;
  min-width: 190px;
  max-height: 56vh;
  overflow-y: auto;
  display: grid;
  gap: 2px;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, .9);
}
.player-menu button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: none;
  color: var(--soft);
  cursor: pointer;
  text-align: left;
  font-size: 14px;
}
.player-menu button:hover {
  background: var(--surface-2);
  color: var(--light);
}
.player-menu button.active {
  color: #fff;
}
.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 8;
  background: rgba(10, 13, 15, .94);
  display: grid;
  place-items: center;
  padding: 32px;
  overflow-y: auto;
}
.player-overlay .inner {
  width: min(1000px, 100%);
  display: grid;
  gap: 20px;
}
.stats-hud {
  position: absolute;
  left: 24px;
  top: 80px;
  background: rgba(12, 16, 19, .86);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 9px 12px;
  font-family:
    ui-monospace,
    Consolas,
    monospace;
  font-size: 11px;
  color: var(--soft);
  line-height: 1.65;
  white-space: pre;
}
.tabbar {
  display: none;
}
@media (max-width: 1180px) {
  :root {
    --shell-pad: 32px;
  }
  .poster-grid,
  .skeleton-grid.posters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .channel-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature {
    gap: 48px;
    padding: 80px 0;
  }
  .intro h1 {
    font-size: clamp(44px, 6vw, 60px);
  }
  .intro-side {
    max-width: 260px;
  }
  .scene {
    height: 350px;
  }
  .section-title {
    font-size: 38px;
  }
  .plans {
    gap: 14px;
  }
  .plan {
    padding: 22px;
  }
  .plan .amount {
    font-size: 36px;
  }
  .faq {
    gap: 48px;
  }
  .app-nav {
    gap: 20px;
  }
  .app-nav .wordmark {
    margin-right: 10px;
  }
  .nav-search {
    width: 180px;
  }
}
@media (max-width: 900px) {
  .media-grid,
  .skeleton-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .with-aside {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .aside-list {
    position: static;
    max-height: none;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .aside-list button {
    white-space: nowrap;
  }
  .auth {
    grid-template-columns: 1fr;
  }
  .auth-visual {
    display: none;
  }
  .auth-form-side {
    padding: 96px 28px 48px;
  }
  .auth-top {
    left: 28px;
  }
  .episode-row .shot {
    width: 128px;
    height: 72px;
  }
}
@media (min-width: 901px) and (max-height: 820px) {
  .app-hero .scene {
    height: 300px;
  }
  .page-intro {
    padding: 24px 0 18px;
  }
  .shelf-head {
    margin: 24px 0 12px;
  }
}
@media (min-width: 901px) and (max-height: 700px) {
  .app-hero .scene {
    height: 260px;
  }
  .scene-copy h2 {
    font-size: 38px;
  }
  .scene-copy p {
    display: none;
  }
}
@media (max-width: 700px) {
  :root {
    --shell-pad: 22px;
  }
  body {
    font-size: 15px;
  }
  .landing-nav {
    height: 76px;
    gap: 12px;
    min-width: 0;
  }
  .wordmark {
    font-size: 28px;
  }
  .landing-nav .navlinks {
    gap: 12px;
    flex: none;
  }
  .landing-nav .navlinks .nav-text {
    font-size: 13px;
  }
  .landing-nav .navlinks button.desktop-only {
    display: none;
  }
  .landing-nav .btn {
    padding: 0 15px;
    min-height: 42px;
    font-size: 12px;
  }
  .intro {
    display: block;
    padding: 38px 0 28px;
  }
  .intro h1 {
    font-size: 51px;
    letter-spacing: -0.045em;
    line-height: 1.04;
  }
  .intro-side {
    max-width: 100%;
    margin-top: 24px;
  }
  .intro-side p {
    font-size: 15px;
    max-width: 340px;
    margin-bottom: 20px;
  }
  .intro-side .note {
    display: inline;
    margin-left: 12px;
    font-size: 11px;
  }
  .showcase {
    border-radius: 12px;
  }
  .showcase-nav {
    gap: 16px;
    padding: 0 16px;
    height: 48px;
    font-size: 10px;
  }
  .showcase-nav .mark {
    font-size: 18px;
    margin-right: 0;
  }
  .showcase-nav .hide-sm {
    display: none;
  }
  .scene {
    height: 345px;
  }
  .scene > img {
    object-position: 64%;
  }
  .scene::after {
    background:
      linear-gradient(
        90deg,
        rgba(16, 39, 43, .7),
        transparent 100%),
      linear-gradient(
        0deg,
        rgba(23, 26, 29, .88),
        transparent 90%);
  }
  .scene-copy {
    left: 23px;
    bottom: 24px;
    max-width: 260px;
  }
  .scene-copy h2 {
    font-size: 40px;
    letter-spacing: -0.03em;
  }
  .scene-copy p {
    font-size: 12px;
    max-width: 230px;
  }
  .showcase-shelf {
    display: none;
  }
  .caption {
    font-size: 10px;
  }
  .caption span:last-child {
    display: none;
  }
  .device-line {
    gap: 0;
    justify-content: space-between;
    font-size: 11px;
    padding: 22px 0 40px;
  }
  .feature {
    display: block;
    padding: 58px 0;
  }
  .section-title {
    font-size: 36px;
    letter-spacing: -0.033em;
  }
  .feature p {
    font-size: 15px;
    margin: 18px 0 23px;
  }
  .feature-demo {
    margin-top: 34px;
    padding: 16px;
  }
  .source-window {
    padding: 21px;
  }
  .pricing {
    padding-block: 52px;
  }
  .section-intro {
    display: block;
    margin-bottom: 26px;
  }
  .section-intro p {
    margin-top: 18px;
    font-size: 14px;
  }
  .plans {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .plans::-webkit-scrollbar {
    display: none;
  }
  .plans > .plan {
    scroll-snap-align: start;
  }
  .plan {
    padding: 25px;
  }
  .plan .desc {
    min-height: 44px;
  }
  .plan .renewal {
    min-height: 38px;
  }
  .paper-sheet {
    padding: 24px 20px 28px;
  }
  .faq {
    display: block;
    padding-bottom: 55px;
  }
  .faq .section-title {
    margin-bottom: 18px;
  }
  .landing-footer {
    display: grid;
    gap: 20px;
    font-size: 11px;
  }
  .app {
    grid-template-rows: 68px 1fr;
  }
  .app-nav {
    height: 68px;
    gap: 14px;
  }
  .app-nav .tabs {
    display: none;
  }
  .app-nav .wordmark {
    font-size: 26px;
    margin-right: 0;
  }
  .app-nav .nav-search {
    display: none;
  }
  .plan-tag {
    display: none;
  }
  .page-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    border-bottom: 1px solid #62696d;
    padding: 10px 4px 10px 0;
    color: var(--soft);
  }
  .page-search svg {
    width: 15px;
    height: 15px;
    flex: none;
  }
  .page-search input {
    flex: 1;
    min-width: 0;
    background: none;
    border: 0;
    outline: none;
    font-size: 14px;
    color: var(--light);
    min-height: 28px;
  }
  .page-search:focus-within {
    border-color: var(--light);
  }
  .app-main {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }
  .page-intro {
    display: block;
    padding: 22px 0 16px;
  }
  .page-intro h1 {
    font-size: 21px;
  }
  .page-intro > *:last-child:not(h1) {
    margin-top: 14px;
  }
  .app-hero .scene {
    height: 340px;
  }
  .app-hero .scene-copy {
    left: 22px;
    bottom: 24px;
  }
  .app-hero .scene-copy h2 {
    font-size: 38px;
  }
  .media-grid,
  .skeleton-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 13px;
  }
  .poster-grid,
  .skeleton-grid.posters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 13px;
  }
  .rail {
    grid-auto-columns: minmax(190px, 190px);
  }
  .channel-list {
    grid-template-columns: 1fr;
  }
  .media b {
    font-size: 13px;
  }
  .media p {
    font-size: 11px;
  }
  .shelf-head {
    margin: 26px 0 12px;
  }
  .settings section {
    padding: 28px 0;
  }
  .row {
    flex-wrap: wrap;
  }
  .episode-row {
    gap: 12px;
  }
  .episode-row .shot {
    width: 104px;
    height: 59px;
  }
  .player-controls {
    padding: 20px 16px 16px;
  }
  .player-menu {
    right: 16px;
    bottom: 98px;
  }
  .ctl-vol input[type=range] {
    width: 80px;
  }
  .account-menu {
    right: 22px;
    left: 22px;
    top: 60px;
    min-width: 0;
  }
  .tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    background: var(--night);
    border-top: 1px solid var(--hairline);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .tabbar button {
    min-height: 60px;
    border: 0;
    background: none;
    cursor: pointer;
    display: grid;
    gap: 3px;
    place-items: center;
    color: var(--soft);
    font-size: 11px;
    font-weight: 500;
  }
  .tabbar button svg {
    width: 21px;
    height: 21px;
  }
  .tabbar button.active {
    color: var(--light);
  }
}
@media (min-width: 1700px) {
  :root {
    --shell-max: 1380px;
  }
  body {
    font-size: 17px;
  }
  .app-hero .scene {
    height: 460px;
  }
  .media b {
    font-size: 15px;
  }
  .channel-body b {
    font-size: 14px;
  }
  .nav-tab {
    font-size: 15px;
  }
}
.vol-ico {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--soft);
}
.vol-ico svg {
  width: 18px;
  height: 18px;
}
/*# sourceMappingURL=app.css.map */
