:root {
  --black: #030303;
  --ink: #f6f1e8;
  --soft: rgba(246, 241, 232, .68);
  --muted: rgba(246, 241, 232, .42);
  --line: rgba(246, 241, 232, .15);
  --panel: rgba(255, 255, 255, .055);
  --gold: #d3b36e;
  --red: #ff4d61;
  --cyan: #81d4d6;
  --green: #b6d99d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-nav {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 3.5vw, 48px);
  color: var(--ink);
  mix-blend-mode: normal;
}

.site-brand,
.deck-nav > a {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-brand-logo,
.deck-logo-img,
.auth-logo-img,
.dash-logo-img {
  display: block;
  width: 156px;
  height: auto;
  filter: contrast(1.18) brightness(1.18);
  mix-blend-mode: screen;
}

.deck-logo-img {
  width: 164px;
}

.auth-logo,
.dash-logo {
  display: block;
}

.auth-logo-img,
.dash-logo-img {
  width: 220px;
  max-width: 100%;
  mix-blend-mode: normal;
}

.site-nav nav,
.deck-nav nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 34px);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: .04em;
}

.site-nav nav a,
.deck-nav nav a {
  color: rgba(246, 241, 232, .82);
}

.home-hero,
.deck-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #020202;
}

.home-hero-bg,
.deck-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.08);
  transform: scale(1.01);
}

.home-hero-shade,
.deck-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .80), rgba(0, 0, 0, .34) 48%, rgba(0, 0, 0, .22)),
    linear-gradient(180deg, rgba(0, 0, 0, .36), rgba(0, 0, 0, .1) 44%, rgba(0, 0, 0, .88));
}

.home-hero-copy,
.deck-hero-copy {
  position: absolute;
  left: clamp(20px, 4.4vw, 72px);
  bottom: clamp(104px, 17vh, 184px);
  z-index: 2;
  width: min(760px, calc(100vw - 40px));
}

.home-hero-copy span,
.deck-hero-copy span,
.deck-section-head span,
.dash-side span,
.dash-hero span,
.section-head span,
.auth-card span,
.deck-password span,
.detail-shell aside > span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-hero-copy h1,
.deck-hero-copy h1 {
  margin: 8px 0 0;
  font-size: clamp(54px, 11vw, 150px);
  line-height: .86;
  font-weight: 780;
  letter-spacing: 0;
}

.home-hero-copy p,
.deck-hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(246, 241, 232, .78);
  font-size: clamp(16px, 1.65vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions a,
.panel-form button,
.auth-card button,
.deck-password button,
.dash-deck a {
  min-height: 44px;
  border: 1px solid rgba(246, 241, 232, .22);
  padding: 12px 18px;
  color: var(--ink);
  background: rgba(0, 0, 0, .32);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-actions .primary,
.panel-form button,
.auth-card button,
.deck-password button {
  color: #050505;
  background: var(--ink);
}

.hero-strip,
.deck-strip {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 62px);
  overflow-x: auto;
  border-top: 1px solid rgba(246, 241, 232, .14);
  background: rgba(0, 0, 0, .48);
  scrollbar-width: none;
}

.hero-strip::-webkit-scrollbar,
.deck-strip::-webkit-scrollbar {
  display: none;
}

.hero-strip span,
.deck-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  min-height: 42px;
  border: 1px solid rgba(246, 241, 232, .2);
  padding: 0 20px;
  color: rgba(246, 241, 232, .74);
  background: rgba(255, 255, 255, .035);
  font-size: 11px;
  font-weight: 740;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding: 1px;
}

.plans article,
.dash-section,
.dash-hero,
.dash-side,
.auth-card,
.deck-password form {
  background: #090909;
}

.plans article {
  min-height: 320px;
  padding: clamp(26px, 4vw, 58px);
}

.plans article span {
  color: var(--gold);
  font-weight: 780;
}

.plans h2 {
  margin: 110px 0 12px;
  font-size: clamp(26px, 3vw, 46px);
  letter-spacing: 0;
}

.plans p {
  max-width: 400px;
  color: var(--soft);
  line-height: 1.7;
}

.deck-body .site-nav {
  display: none;
}

.deck-nav {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(18px, 3.8vw, 58px);
}

.deck-logo-link {
  max-width: 178px;
  overflow: hidden;
}

.deck-page {
  min-height: 100vh;
  background: var(--black);
}

.deck-works {
  padding: clamp(52px, 8vw, 118px) clamp(14px, 3.8vw, 54px);
}

.deck-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(26px, 4vw, 50px);
}

.deck-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 6vw, 88px);
  line-height: .95;
  letter-spacing: 0;
}

.deck-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 34px);
  align-items: start;
}

.deck-card {
  position: relative;
  grid-column: span 6;
}

.deck-card-portrait {
  grid-column: span 4;
}

.deck-card-square {
  grid-column: span 4;
}

.deck-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
}

.deck-card-landscape .deck-card-media {
  aspect-ratio: 16 / 10;
}

.deck-card-portrait .deck-card-media {
  aspect-ratio: 4 / 5.6;
}

.deck-card-square .deck-card-media {
  aspect-ratio: 1;
}

.deck-media,
.detail-asset {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.88) contrast(1.06);
  transition: transform 900ms ease, filter 900ms ease;
}

.deck-card:hover .deck-media {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.12);
}

.deck-card-media span,
.deck-card-media em {
  position: absolute;
  top: 16px;
  color: rgba(246, 241, 232, .78);
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.deck-card-media span {
  left: 16px;
}

.deck-card-media em {
  right: 16px;
}

.deck-card-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
  padding: 14px 62px 0 0;
}

.deck-card-caption a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 720;
}

.deck-card-caption small {
  color: var(--muted);
  line-height: 1.45;
}

.like-form {
  margin: 0;
}

.heart,
.detail-heart {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 48px;
  min-height: 42px;
  border: 1px solid rgba(246, 241, 232, .18);
  color: var(--ink);
  background: rgba(0, 0, 0, .82);
  cursor: pointer;
}

.heart span,
.detail-heart span {
  color: var(--red);
  font-size: 17px;
}

.heart.active,
.heart:disabled,
.detail-heart.active,
.detail-heart:disabled {
  border-color: rgba(255, 77, 97, .48);
  background: rgba(255, 77, 97, .14);
  cursor: default;
}

.deck-about,
.deck-contact {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 760px);
  gap: clamp(22px, 6vw, 96px);
  padding: clamp(48px, 8vw, 120px) clamp(20px, 6vw, 90px);
  border-top: 1px solid var(--line);
}

.deck-about h2,
.deck-contact h2 {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.deck-about p,
.deck-contact p {
  margin: 0;
  color: var(--soft);
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.24;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  gap: clamp(24px, 5vw, 70px);
  min-height: 100vh;
  padding: 110px clamp(18px, 4vw, 58px) 58px;
}

.detail-media {
  min-height: calc(100vh - 168px);
  background: #0b0b0b;
}

.detail-asset {
  min-height: calc(100vh - 168px);
}

.detail-shell aside {
  align-self: end;
  padding-bottom: 22px;
}

.detail-shell h1 {
  margin: 12px 0;
  font-size: clamp(40px, 6vw, 86px);
  line-height: .94;
}

.detail-shell p {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

.detail-heart {
  position: static;
  margin: 18px 0 22px;
  padding: 0 16px;
}

.deck-password {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 20px;
  background: #050505;
}

.deck-password form {
  width: min(430px, 100%);
  border: 1px solid var(--line);
  padding: 34px;
}

.deck-password h1,
.auth-card h1 {
  margin: 10px 0 12px;
}

.deck-password input,
.auth-card input,
.auth-card select,
.panel-form input,
.panel-form select,
.panel-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(246, 241, 232, .16);
  border-radius: 0;
  padding: 10px 12px;
  color: var(--ink);
  background: #050505;
}

.auth-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 92px 18px 36px;
  background: #060606;
}

.auth-card {
  display: grid;
  gap: 14px;
  width: min(460px, 100%);
  border: 1px solid var(--line);
  padding: 34px;
}

.auth-card label,
.panel-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
}

.notice {
  border: 1px solid rgba(211, 179, 110, .28);
  padding: 12px 14px;
  color: #f5dca4;
  background: rgba(211, 179, 110, .09);
}

.dashboard {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  min-height: 100vh;
  padding: 96px 22px 42px;
  background: #070707;
}

.dash-side {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 22px;
}

.dash-side h1,
.dash-hero h2,
.section-head h2 {
  margin: 0;
}

.dash-side p,
.muted {
  color: var(--muted);
}

.dash-side a {
  border: 1px solid var(--line);
  padding: 12px;
  color: var(--soft);
}

.dash-main {
  min-width: 0;
}

.dash-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 42px);
}

.dash-hero h2 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.02;
}

.dash-hero dl,
.dash-deck dl {
  display: flex;
  gap: 16px;
  margin: 0;
}

.dash-hero dt,
.dash-deck dt {
  color: var(--gold);
  font-size: 24px;
  font-weight: 780;
}

.dash-hero dd,
.dash-deck dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.dash-section {
  margin-top: 20px;
  border: 1px solid var(--line);
  padding: clamp(18px, 3vw, 34px);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

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

.dash-work {
  min-width: 0;
  background: rgba(255, 255, 255, .04);
}

.dash-work img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.dash-work div {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.dash-work b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-work span {
  color: var(--muted);
  font-size: 12px;
}

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

.dash-deck {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(246, 241, 232, .13);
  padding: 18px;
  background: rgba(255, 255, 255, .04);
}

.dash-deck h3,
.dash-deck p {
  margin: 0;
}

.dash-deck p {
  color: var(--muted);
}

.panel-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.panel-form h3,
.panel-form .check-list,
.panel-form button,
.panel-form label:has(textarea) {
  grid-column: 1 / -1;
}

.panel-form textarea {
  min-height: 92px;
  resize: vertical;
}

.check-list {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 14px;
}

.check-list label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-list input {
  width: auto;
  min-height: auto;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--soft);
}

th,
td {
  border-bottom: 1px solid rgba(246, 241, 232, .1);
  padding: 11px 8px;
  text-align: left;
  font-size: 13px;
}

th {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .plans,
  .dashboard,
  .detail-shell,
  .deck-about,
  .deck-contact {
    grid-template-columns: 1fr;
  }

  .dash-side {
    position: static;
  }

  .deck-card,
  .deck-card-portrait,
  .deck-card-square {
    grid-column: span 12;
  }

  .detail-media,
  .detail-asset {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 640px) {
  .site-nav,
  .deck-nav {
    padding: 18px;
  }

  .site-nav nav,
  .deck-nav nav {
    gap: 13px;
    font-size: 11px;
  }

  .home-hero-copy,
  .deck-hero-copy {
    bottom: 108px;
  }

  .home-hero-copy h1,
  .deck-hero-copy h1 {
    font-size: clamp(48px, 18vw, 76px);
  }

  .panel-form {
    grid-template-columns: 1fr;
  }

  .dashboard {
    padding: 88px 12px 30px;
  }
}

/* Cinematic private deck skin */
.deck-page {
  background: #000;
}

.deck-page .deck-nav-floating {
  position: absolute;
  z-index: 60;
  padding: 34px 7vw 0 6.5vw;
  pointer-events: none;
}

.deck-page .deck-nav-floating a,
.deck-page .deck-nav-floating nav {
  pointer-events: auto;
}

.deck-page .deck-logo-link {
  max-width: 154px;
}

.deck-page .deck-logo-img {
  width: 154px;
  filter: contrast(1.24) brightness(1.18);
}

.deck-page .deck-nav nav {
  gap: 34px;
  padding-top: 15px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .08em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .82);
}

.deck-page .deck-nav nav a {
  color: rgba(246, 241, 232, .78);
}

.deck-page .deck-nav nav a:hover {
  color: #fff;
}

.deck-page .deck-hero,
.detail-page .detail-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.deck-page .deck-hero-media {
  filter: saturate(1.08) contrast(1.16) brightness(.74);
  transform: scale(1.018);
}

.deck-page .deck-shade,
.detail-page .detail-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .46), rgba(0, 0, 0, .06) 42%, rgba(0, 0, 0, .52)),
    linear-gradient(180deg, rgba(0, 0, 0, .32), rgba(0, 0, 0, .02) 38%, rgba(0, 0, 0, .86));
}

.deck-page .deck-hero-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.deck-page .deck-scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 88px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  transform: translateX(-50%);
  opacity: .72;
}

.deck-page .deck-scroll-cue span {
  display: block;
  width: 13px;
  height: 13px;
  border-right: 1px solid rgba(246, 241, 232, .8);
  border-bottom: 1px solid rgba(246, 241, 232, .8);
  transform: rotate(45deg);
}

.deck-page .deck-strip,
.detail-page .detail-strip {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 86px;
  padding: 0 6.5vw;
  overflow: hidden;
  border-top: 1px solid rgba(246, 241, 232, .08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .68) 26%, rgba(0, 0, 0, .92));
}

.deck-page .deck-strip span,
.detail-page .detail-strip span {
  display: inline-flex;
  align-items: center;
  min-width: auto;
  min-height: 0;
  border: 0;
  padding: 0;
  color: rgba(246, 241, 232, .58);
  background: transparent;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.deck-page .deck-strip span:nth-child(3n + 1),
.detail-page .detail-strip span:nth-child(3n + 1) {
  color: rgba(246, 241, 232, .74);
}

.deck-page .deck-works {
  padding: 2px 0 0;
  background: #000;
}

.deck-page .deck-section-head {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.deck-page .deck-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  background: #000;
}

.deck-page .deck-card {
  position: relative;
  grid-column: span 6;
  overflow: hidden;
  background: #050505;
}

.deck-page .deck-card-portrait,
.deck-page .deck-card-square {
  grid-column: span 4;
}

.deck-page .deck-card-media {
  height: 100%;
  min-height: 420px;
}

.deck-page .deck-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .74)),
    linear-gradient(90deg, rgba(0, 0, 0, .24), rgba(0, 0, 0, 0) 52%);
  opacity: .5;
  transition: opacity 420ms ease;
}

.deck-page .deck-card:hover .deck-card-media::after {
  opacity: .9;
}

.deck-page .deck-card-media span,
.deck-page .deck-card-media em {
  z-index: 2;
  top: 22px;
  color: rgba(246, 241, 232, .64);
  font-size: 11px;
}

.deck-page .deck-card-media span {
  left: 22px;
}

.deck-page .deck-card-media em {
  right: 22px;
}

.deck-page .deck-card-caption {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 92px;
  bottom: 24px;
  gap: 8px;
  padding: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.deck-page .deck-card:hover .deck-card-caption {
  opacity: 1;
  transform: translateY(0);
}

.deck-page .deck-card-caption a {
  font-size: 20px;
  font-weight: 760;
}

.deck-page .deck-card-caption small {
  color: rgba(246, 241, 232, .64);
}

.deck-page .heart {
  z-index: 5;
  right: 22px;
  bottom: 22px;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgba(246, 241, 232, .16);
  border-radius: 50%;
  color: rgba(246, 241, 232, .9);
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(10px);
}

.deck-page .heart span,
.detail-page .detail-heart span {
  color: #ff4d61;
}

.detail-page .detail-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background: #000;
}

.detail-page .detail-asset {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.14) brightness(.82);
}

.detail-page .detail-like {
  position: absolute;
  z-index: 7;
  right: 6.5vw;
  bottom: 108px;
}

.detail-page .detail-heart {
  position: static;
  min-width: 54px;
  min-height: 50px;
  margin: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(10px);
}

.detail-page .detail-info {
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 860px);
  gap: 70px;
  padding: 104px 6.5vw 124px;
  border-top: 1px solid rgba(246, 241, 232, .1);
  background: #000;
}

.detail-page .detail-back {
  align-self: start;
  color: rgba(246, 241, 232, .5);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.detail-page .detail-info h1 {
  margin: 0;
  font-size: 64px;
  line-height: .96;
  letter-spacing: 0;
}

.detail-page .detail-info p {
  grid-column: 2;
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(246, 241, 232, .68);
  font-size: 18px;
  line-height: 1.72;
}

@media (max-width: 920px) {
  .deck-page .deck-nav-floating {
    padding: 24px 24px 0;
  }

  .deck-page .deck-logo-img {
    width: 132px;
  }

  .deck-page .deck-nav nav {
    gap: 20px;
    padding-top: 12px;
    font-size: 12px;
  }

  .deck-page .deck-strip,
  .detail-page .detail-strip {
    justify-content: flex-start;
    min-height: 78px;
    padding: 0 24px;
    gap: 32px;
    overflow-x: auto;
  }

  .deck-page .deck-card,
  .deck-page .deck-card-portrait,
  .deck-page .deck-card-square {
    grid-column: span 12;
  }

  .deck-page .deck-card-media {
    min-height: 340px;
  }

  .detail-page .detail-like {
    right: 24px;
  }

  .detail-page .detail-info {
    display: block;
    padding: 78px 24px 96px;
  }

  .detail-page .detail-info h1 {
    margin-top: 24px;
    font-size: 46px;
  }

  .detail-page .detail-info p {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .deck-page .deck-nav-floating {
    align-items: flex-start;
  }

  .deck-page .deck-logo-img {
    width: 116px;
  }

  .deck-page .deck-nav nav {
    gap: 14px;
    font-size: 11px;
  }

  .deck-page .deck-scroll-cue {
    bottom: 80px;
  }

  .deck-page .deck-strip span,
  .detail-page .detail-strip span {
    font-size: 11px;
  }

  .deck-page .deck-card-media {
    min-height: 300px;
  }

  .deck-page .deck-card-caption {
    left: 18px;
    right: 78px;
    bottom: 18px;
    opacity: 1;
    transform: none;
  }

  .deck-page .heart {
    right: 16px;
    bottom: 16px;
  }
}
