@font-face {
  font-family: "Pretendard Variable";
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url("assets/fonts/PretendardVariable-subset.woff2?v=20260906-guide") format("woff2-variations");
}

:root {
  --color-background: #F7F4FF;
  --color-surface: #FFFFFF;
  --color-surface-soft: #EEE9FA;
  --color-primary: #8A75C9;
  --color-primary-dark: #5C4B91;
  --color-secondary: #A9D8E8;
  --color-accent: #F0B6C7;
  --color-text: #302A3D;
  --color-text-muted: #746D80;
  --color-border: #D9D0EC;
  --color-focus: #4F74B8;
  --page-pink: var(--color-background);
  --page-pink-2: var(--color-surface-soft);
  --card: color-mix(in srgb, var(--color-surface) 84%, transparent);
  --card-solid: var(--color-surface);
  --line: var(--color-primary);
  --line-soft: var(--color-border);
  --hot: var(--color-primary);
  --hot-2: var(--color-primary-dark);
  --text: var(--color-text);
  --muted: var(--color-text-muted);
  --gold: var(--color-secondary);
  --shadow: 0 9px 22px color-mix(in srgb, var(--color-primary) 20%, transparent);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-pink);
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  overflow-x: auto;
  overflow-y: scroll;
  color: var(--text);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-weight: 400;
  background:
    radial-gradient(circle at 9% 15%, color-mix(in srgb, var(--color-surface) 58%, transparent) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 14%, color-mix(in srgb, var(--color-secondary) 48%, transparent) 0 2px, transparent 3px),
    linear-gradient(90deg, color-mix(in srgb, var(--color-primary) 8%, transparent) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--color-primary) 8%, transparent) 1px, transparent 1px),
    linear-gradient(180deg, var(--color-background) 0%, var(--color-surface-soft) 70%, var(--color-surface) 100%);
  background-size: 96px 96px, 132px 132px, 24px 24px, 24px 24px, auto;
}

body.is-night {
  --color-background: #171423;
  --color-surface: #272239;
  --color-surface-soft: #312A47;
  --color-primary: #B8A7ED;
  --color-primary-dark: #D8CFF5;
  --color-secondary: #7DB6CB;
  --color-accent: #D894AA;
  --color-text: #F4F0FF;
  --color-text-muted: #C0B8CF;
  --color-border: #51486C;
  --color-focus: #9DB9F2;
  --page-pink: var(--color-background);
  --page-pink-2: var(--color-surface-soft);
  --card: color-mix(in srgb, var(--color-surface) 84%, transparent);
  --card-solid: var(--color-surface);
  --line: var(--color-primary);
  --line-soft: var(--color-border);
  --hot: var(--color-primary);
  --hot-2: var(--color-primary-dark);
  --text: var(--color-text);
  --muted: var(--color-text-muted);
  --gold: var(--color-secondary);
  --shadow: 0 9px 22px color-mix(in srgb, var(--color-primary) 20%, transparent);
}

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

button {
  font: inherit;
}

a,
button,
summary {
  transition: filter 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

a:hover,
button:hover,
summary:hover {
  filter: brightness(.96);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.site-canvas {
  position: relative;
  width: 1536px;
  min-height: 984px;
  margin: 0 auto;
  padding-top: 14px;
  overflow: hidden;
  transform: translateX(var(--page-shift, 0px)) scale(var(--page-scale, 1));
  transform-origin: top center;
}

.topbar,
.panel {
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.topbar {
  display: grid;
  grid-template-columns: 210px 1fr 168px;
  align-items: center;
  gap: 20px;
  width: 1452px;
  height: 76px;
  margin-left: 42px;
  padding: 12px 42px 12px 52px;
}

.asset-frame,
.image-frame {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--hot);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  background:
    linear-gradient(45deg, color-mix(in srgb, var(--color-surface) 22%, transparent) 25%, transparent 25% 50%, color-mix(in srgb, var(--color-surface) 22%, transparent) 50% 75%, transparent 75%),
    linear-gradient(135deg, var(--color-surface), var(--color-surface-soft));
  background-size: 10px 10px, auto;
}

.asset-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px dashed color-mix(in srgb, var(--color-primary) 40%, transparent);
  pointer-events: none;
}

.image-frame {
  color: transparent;
  background: transparent;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.responsive-picture {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.top-logo {
  width: 166px;
  height: 52px;
  border-radius: 10px;
}

.top-logo img {
  object-fit: contain;
}

.nav-pills {
  display: flex;
  justify-content: center;
  gap: 13px;
}

.nav-pills a {
  display: grid;
  place-items: center;
  width: 113px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--hot);
  font-size: 15px;
  font-weight: 700;
  background: color-mix(in srgb, var(--color-surface) 70%, transparent);
}

.nav-pills a:nth-child(4) {
  width: 123px;
}

.nav-pills a.active {
  color: #fff;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
  border-color: transparent;
}

.top-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.top-icons a,
.theme-toggle {
  display: grid;
  place-items: center;
  width: 28px;
  height: 34px;
  border: 0;
  color: var(--hot);
  font-size: 27px;
  line-height: 1;
  background: transparent;
  cursor: pointer;
}

main {
  margin-top: 14px;
}

.hero-card {
  position: relative;
  display: block;
  width: 1452px;
  height: 318px;
  margin-left: 42px;
  padding: 0;
}

.pixel-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pixel-sparkles i {
  position: absolute;
  width: 15px;
  height: 15px;
  color: var(--color-accent);
}

.pixel-sparkles i::before {
  content: "✣";
  position: absolute;
}

.pixel-sparkles i:nth-child(1) { left: 76px; top: 32px; }
.pixel-sparkles i:nth-child(2) { left: 135px; top: 108px; }
.pixel-sparkles i:nth-child(3) { left: 250px; top: 64px; }
.pixel-sparkles i:nth-child(4) { left: 330px; top: 96px; }
.pixel-sparkles i:nth-child(5) { left: 558px; top: 42px; }
.pixel-sparkles i:nth-child(6) { right: 316px; top: 44px; color: var(--color-secondary); }
.pixel-sparkles i:nth-child(7) { right: 24px; top: 44px; color: var(--color-secondary); }
.pixel-sparkles i:nth-child(8) { left: 106px; bottom: 58px; }

.hero-logo {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 915px;
  height: 318px;
  border: 0;
  border-radius: 13px;
  font-size: 19px;
  background: transparent;
  box-shadow: none;
}

.hero-logo img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.085);
}

.hero-logo:hover {
  filter: none;
}

.intro-bubble {
  position: absolute;
  left: 929px;
  top: 0;
  width: 522px;
  height: 318px;
  padding: 17px 20px 15px 22px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: color-mix(in srgb, var(--color-surface) 78%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.intro-bubble h1 {
  margin: 0 0 11px;
  color: var(--hot-2);
  font-size: 25px;
  font-weight: 850;
  line-height: 1.2;
}

.intro-bubble p {
  margin: 0 0 13px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.intro-bubble p:last-of-type {
  margin-bottom: 0;
}

.small-button {
  display: inline-grid;
  place-items: center;
  height: 29px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 800;
  background: color-mix(in srgb, var(--color-surface) 70%, transparent);
}

.small-button.filled {
  min-width: 96px;
  color: #fff;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
}

.dashboard {
  display: grid;
  grid-template-columns: 441px 460px 522px;
  gap: 14px;
  width: 1452px;
  margin: 14px 0 0 42px;
}

.dashboard-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 14px;
}

.dashboard-bottom > .social-panel:only-child {
  grid-column: 1 / -1;
}

.panel {
  position: relative;
  padding: 19px 21px;
  background: color-mix(in srgb, var(--color-surface) 84%, transparent);
}

.latest-panel {
  height: 314px;
}

.center-column,
.right-column {
  display: grid;
  gap: 14px;
}

.center-column {
  width: 460px;
}

.right-column {
  width: 522px;
}

.about-panel {
  width: 460px;
  height: 314px;
}

.news-panel {
  width: 522px;
  height: 314px;
}

.social-panel {
  width: 100%;
  height: 122px;
}

.shop-panel {
  height: 122px;
}

.panel-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.panel-heading h2 {
  order: 2;
  margin: 0;
  color: var(--hot);
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.panel-heading span {
  order: 1;
  color: var(--hot);
  font-size: 20px;
  line-height: 1;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.category-tabs a {
  display: grid;
  place-items: center;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--hot);
  font-size: 11px;
  font-weight: 700;
  background: color-mix(in srgb, var(--color-surface) 70%, transparent);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.work-gallery .asset-frame,
.work-gallery .image-frame {
  width: 119px;
  height: 140px;
  border-radius: 9px;
}

.work-gallery .image-frame {
  grid-template-rows: 119px 21px;
  place-items: stretch;
}

.work-gallery .image-frame img {
  height: 120px;
  object-fit: cover;
}

.work-gallery-title {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 0 5px;
  overflow: hidden;
  color: var(--color-surface);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: var(--color-primary-dark);
}

.wide {
  display: grid;
  width: 100%;
  margin: 19px auto 0;
}

.about-content {
  display: grid;
  grid-template-columns: 195px 1fr;
  gap: 18px;
  align-items: start;
}

.about-character {
  width: 188px;
  height: 242.42px;
  border-radius: 12px;
}

.profile-box {
  width: 217px;
  min-height: 147px;
  margin-top: 1px;
  padding: 10px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: color-mix(in srgb, var(--color-surface) 64%, transparent);
}

.profile-box dl {
  margin: 0;
}

.profile-box div {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 6px;
  min-height: 25px;
}

.profile-box dt {
  color: var(--hot);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.profile-box dd {
  margin: 0;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

blockquote {
  position: absolute;
  right: 7px;
  bottom: 18px;
  width: 217px;
  height: 48px;
  margin: 0;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--hot);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
  text-align: center;
  background: color-mix(in srgb, var(--color-surface) 68%, transparent);
}

blockquote span {
  color: var(--line);
  font-size: 22px;
  line-height: 1;
}

.footer-cat img {
  object-fit: contain;
}

.news-list {
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}

.news-list li {
  display: block;
  height: 44px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
}

.news-list li > a {
  display: grid;
  grid-template-columns: 1fr 82px;
  align-items: center;
  width: 100%;
  height: 100%;
}

.news-list time {
  color: var(--hot);
  text-align: right;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.news-list li span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.more {
  width: 111px;
  margin: 13px auto 0;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(7, 42px);
  justify-content: center;
  gap: 12px 18px;
  padding-top: 5px;
}

.shop-status {
  position: relative;
  top: 3px;
  margin: 4px 0 0 30px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.guide-panel {
  display: block;
  color: inherit;
}

.guide-panel-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-left: 30px;
}

.guide-panel-content p {
  min-width: 0;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.guide-panel .small-button {
  flex: 0 0 auto;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  color: var(--hot);
  font-size: 15px;
  font-weight: 900;
  background: color-mix(in srgb, var(--color-surface) 64%, transparent);
  clip-path: polygon(25% 0, 75% 0, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0 75%, 0 25%);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: 430px 1fr 300px 170px;
  align-items: center;
  width: 1536px;
  height: 79px;
  margin-top: 18px;
  padding: 0 58px 1px 78px;
  border-top: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--color-surface) 70%, transparent);
}

.thanks {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-cat {
  width: 57px;
  height: 57px;
  border-radius: 10px;
  font-size: 10px;
}

.thanks p {
  margin: 0;
  width: 166px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 800;
  background: color-mix(in srgb, var(--color-surface) 72%, transparent);
}

.footer-copy {
  position: relative;
  top: 2px;
  color: var(--color-text);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.footer-copy p {
  margin: 2px 0;
  line-height: 16px;
}

.footer-copy p:first-child {
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.footer-copy p:nth-child(2) {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 500;
}

.footer-copy p:last-child {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  display: grid;
  place-items: center;
  width: 113px;
  height: 28px;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 800;
  background: color-mix(in srgb, var(--color-surface) 58%, transparent);
}

.meter {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 120px;
  height: 56px;
  border: 4px solid var(--line);
  color: var(--hot);
  font-size: 20px;
  background: color-mix(in srgb, var(--color-surface) 68%, transparent);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.meter b {
  font-size: 18px;
}

.home-data-message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--color-text-muted);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 1000;
  max-width: calc(100% - 32px);
  padding: 11px 18px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-surface);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  background: var(--color-primary-dark);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.subpage-main {
  width: 1452px;
  min-height: 720px;
  margin: 14px 0 0 42px;
}

.page-intro {
  width: 100%;
  min-height: 132px;
  padding: 25px 31px;
}

.page-eyebrow {
  margin: 0 0 8px;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0;
}

.page-intro h1 {
  margin: 0 0 11px;
  color: var(--color-primary-dark);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.page-intro > p:last-child {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.about-page-intro {
  position: relative;
  padding-right: 710px;
}

.about-page-intro > .about-intro-lead {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.furry-definition {
  position: absolute;
  top: 16px;
  right: 31px;
  bottom: 16px;
  display: grid;
  align-content: center;
  width: 650px;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: inherit;
  background: color-mix(in srgb, var(--color-surface-soft) 68%, transparent);
  cursor: pointer;
}

.furry-definition h2 {
  margin: 0 0 6px;
  color: var(--color-primary);
  font-size: 15px;
  line-height: 1.35;
}

.furry-definition p {
  margin: 0;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.furry-definition-link {
  display: inline-grid;
  place-items: center;
  justify-self: start;
  min-height: 27px;
  margin-top: 6px;
  padding: 0 13px;
  border: 1px solid var(--color-primary-dark);
  border-radius: 999px;
  color: var(--color-surface);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
}

.furry-definition:hover .furry-definition-link,
.furry-definition:focus-visible .furry-definition-link {
  filter: brightness(1.06);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 580px 1fr;
  align-items: start;
  gap: 14px;
  margin-top: 14px;
}

.about-profile-card {
  display: grid;
  grid-template-columns: 286px 1fr;
  gap: 20px;
  min-height: 520px;
  padding: 25px;
}

.about-page-character {
  width: 286px;
  height: 438px;
  border-radius: 8px;
}

.about-page-profile h2,
.prose-panel h2,
.work-fields-panel h2 {
  margin: 0 0 18px;
  color: var(--color-primary);
  font-size: 19px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.about-page-profile dl {
  margin: 0;
}

.about-page-profile dl div {
  padding: 11px 0;
  border-bottom: 1px solid var(--color-border);
}

.about-page-profile dt {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
}

.about-page-profile dd {
  margin: 0;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.about-page-copy {
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
}

.prose-panel,
.work-fields-panel {
  padding: 25px 28px;
}

.prose-panel p {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.82;
}

.prose-panel p:last-child {
  margin-bottom: 0;
}

.work-field-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-field-list li {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 14px;
  padding: 10px 12px;
  border-left: 3px solid var(--color-secondary);
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-surface-soft) 74%, transparent);
}

.work-field-list strong {
  color: var(--color-primary);
  font-size: 13px;
  line-height: 1.55;
}

.work-field-list span {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.page-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.page-actions .small-button {
  min-width: 130px;
  height: 36px;
}

.portfolio-panel,
.news-archive-panel {
  width: 100%;
  min-height: 560px;
  margin-top: 14px;
  padding: 25px 28px 32px;
}

.portfolio-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.portfolio-toolbar button {
  min-width: 112px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  background: color-mix(in srgb, var(--color-surface) 76%, transparent);
  cursor: pointer;
}

.portfolio-toolbar button.is-active {
  border-color: var(--color-primary);
  color: var(--color-surface);
  background: var(--color-primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-card {
  display: grid;
  grid-template-rows: 300px auto;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  text-align: left;
  background: var(--color-surface);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--color-primary) 10%, transparent);
  cursor: pointer;
}

.work-card[hidden] {
  display: none;
}

.work-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.work-card-copy {
  display: grid;
  gap: 6px;
  padding: 15px 16px 17px;
}

.work-card-copy strong {
  color: var(--color-primary-dark);
  font-size: 16px;
  line-height: 1.35;
}

.work-card-copy small {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 34px 0;
  color: var(--color-text-muted);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.work-modal {
  width: min(960px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: visible;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  background: var(--color-surface);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.work-modal[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
}

.work-modal::backdrop {
  background: rgba(24, 20, 35, .72);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-primary-dark);
  font-size: 28px;
  line-height: 1;
  background: var(--color-surface);
  cursor: pointer;
}

.modal-image-wrap {
  min-height: 520px;
  padding: 22px;
  background: var(--color-surface-soft);
}

.modal-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 84px);
  object-fit: contain;
}

.modal-copy {
  align-self: center;
  padding: 38px 32px;
}

.modal-copy > p:first-child {
  margin: 0 0 10px;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 900;
}

.modal-copy h2 {
  margin: 0 0 18px;
  color: var(--color-primary-dark);
  font-size: 24px;
  line-height: 1.3;
}

.modal-copy > p:last-of-type {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
  white-space: pre-line;
}

.modal-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 0 18px;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: var(--color-primary);
}

.news-archive {
  display: grid;
  gap: 10px;
}

.notice-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--color-surface) 78%, transparent);
}

.notice-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 15px 18px;
  color: inherit;
}

.notice-heading {
  display: grid;
  flex: 1;
  gap: 5px;
  min-width: 0;
}

.notice-heading strong {
  color: var(--color-primary-dark);
  font-size: 15px;
  line-height: 1.4;
}

.notice-heading small {
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-item time {
  flex: 0 0 94px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-align: right;
}

.pinned-label {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 900;
  background: var(--color-secondary);
}

.hub-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.hub-page-card {
  min-height: 500px;
  padding: 28px;
}

.hub-page-card h2,
.shop-preview-card h2,
.link-directory-item h2 {
  margin: 0 0 18px;
  color: var(--color-primary);
  font-size: 19px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hub-step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hub-step-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 67px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-surface-soft) 68%, transparent);
}

.hub-step-list b {
  color: var(--color-secondary);
  font-size: 14px;
}

.hub-step-list span,
.hub-page-note,
.contact-card p,
.shop-preview-card p,
.link-directory-item p {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.7;
}

.hub-page-note {
  margin: 22px 0 0;
}

.feedback-form {
  display: grid;
  gap: 15px;
}

.feedback-form label {
  display: grid;
  gap: 7px;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 800;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  font: inherit;
  font-size: 14px;
  background: var(--color-surface);
}

.feedback-form textarea {
  min-height: 160px;
  resize: vertical;
}

.feedback-form .small-button {
  width: 148px;
  min-height: 44px;
  border: 0;
  cursor: pointer;
}

.form-help {
  margin: -3px 0 0;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.feedback-contact-card {
  grid-column: 1 / -1;
  min-height: 0;
}

.contact-symbol {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-primary);
  font-size: 34px;
  background: var(--color-surface-soft);
}

.contact-address {
  color: var(--color-primary-dark);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}

.contact-card p {
  max-width: 420px;
  margin: 17px 0 0;
}

.shop-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.shop-preview-card {
  min-width: 0;
  overflow: hidden;
}

.shop-preview-card img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.shop-preview-card > div {
  padding: 21px 22px 24px;
}

.shop-preview-card > div > span,
.shop-preview-card b {
  color: var(--color-secondary);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.shop-preview-card h2 {
  margin: 8px 0 9px;
}

.shop-preview-card p {
  min-height: 45px;
  margin: 0 0 17px;
}

.shop-preview-card b {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-primary-dark);
  background: var(--color-surface-soft);
}

.link-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.link-directory-item {
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  align-items: center;
  gap: 16px;
  min-height: 132px;
  padding: 20px 24px;
}

.link-directory-item > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-primary);
  font-size: 26px;
  background: var(--color-surface-soft);
}

.link-directory-item h2 {
  margin: 0 0 6px;
  font-size: 16px;
}

.link-directory-item p {
  margin: 0;
}

.link-directory-item > b {
  color: var(--color-primary);
  font-size: 30px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin-top: 14px;
}

.legal-layout > * {
  min-width: 0;
}

.legal-summary {
  position: sticky;
  top: 14px;
  padding: 24px 22px;
}

.legal-effective {
  margin: 0 0 20px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.legal-effective strong {
  margin-right: 5px;
  color: var(--color-primary);
}

.legal-summary h2 {
  margin: 0 0 13px;
  color: var(--color-primary-dark);
  font-size: 18px;
  line-height: 1.35;
}

.legal-summary-list,
.legal-list {
  margin: 0;
  padding-left: 20px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.75;
}

.legal-summary-list {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.legal-summary-list li + li,
.legal-list li + li {
  margin-top: 7px;
}

.legal-nav {
  display: grid;
  gap: 4px;
  margin-top: 15px;
}

.legal-nav a {
  min-height: 38px;
  padding: 9px 10px;
  border-left: 3px solid var(--color-secondary);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.legal-content {
  padding: 30px 34px 36px;
}

.legal-section {
  scroll-margin-top: 18px;
}

.legal-section + .legal-section {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.legal-section h2 {
  margin: 0 0 15px;
  color: var(--color-primary-dark);
  font-size: 19px;
  line-height: 1.4;
}

.legal-section h3 {
  margin: 22px 0 11px;
  color: var(--color-primary);
  font-size: 16px;
  line-height: 1.45;
}

.legal-section p {
  margin: 0 0 13px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-border);
}

.legal-details div {
  min-width: 0;
  padding: 13px 15px;
  background: var(--color-surface-soft);
}

.legal-details dt {
  margin-bottom: 5px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
}

.legal-details dd {
  margin: 0;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--color-text);
  font-size: 12px;
  line-height: 1.65;
}

.legal-table th,
.legal-table td {
  padding: 13px 14px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.legal-table tr > :last-child {
  border-right: 0;
}

.legal-table tbody tr:last-child > * {
  border-bottom: 0;
}

.legal-table thead th {
  color: var(--color-primary-dark);
  font-weight: 900;
  background: var(--color-surface-soft);
}

.legal-table tbody th {
  width: 145px;
  color: var(--color-primary);
  font-weight: 850;
  background: color-mix(in srgb, var(--color-surface-soft) 60%, var(--color-surface));
}

.legal-table td {
  font-weight: 600;
  background: var(--color-surface);
}

.legal-section code {
  color: var(--color-primary-dark);
  font-family: Consolas, "Courier New", monospace;
  font-size: .95em;
  font-weight: 700;
}

.legal-note {
  margin-top: 15px !important;
  padding: 13px 15px;
  border-left: 3px solid var(--color-secondary);
  background: var(--color-surface-soft);
}

.legal-inline-link,
.legal-details a {
  color: var(--color-primary-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--color-secondary);
  text-underline-offset: 3px;
}

.legal-reference-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}

.legal-reference-links a {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 7px;
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 800;
  background: var(--color-surface-soft);
}

.furry-guide-intro {
  min-height: 158px;
}

.guide-library {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.guide-library-item {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 96px;
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  background: var(--card);
  box-shadow: var(--shadow);
}

.guide-library-item:hover {
  border-color: var(--color-primary);
}

.guide-library-item.is-active {
  border-color: var(--color-primary);
  background: var(--color-surface-soft);
}

.guide-library-item small {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.4;
}

.guide-library-item strong {
  margin-top: 4px;
  color: var(--color-primary-dark);
  font-size: 16px;
  line-height: 1.45;
}

.guide-library-item span {
  margin-top: 5px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.guide-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 11px 0 2px;
}

.guide-page-number,
.guide-page-arrow {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  background: var(--card);
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.guide-page-arrow {
  font-size: 18px;
}

a.guide-page-number:hover,
a.guide-page-arrow:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.guide-page-number.is-active {
  border-color: var(--color-primary-dark);
  color: #fff;
  background: var(--color-primary-dark);
  box-shadow: 0 3px 9px rgba(113, 88, 178, 0.18);
  cursor: default;
}

.guide-page-arrow.is-disabled {
  color: var(--color-border);
  background: var(--color-surface-soft);
  cursor: default;
}

.guide-page-arrow.is-disabled:hover {
  border-color: var(--color-border);
  color: var(--color-border);
  transform: none;
}

.furry-guide-intro > .furry-guide-description {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.furry-guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 22px;
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.5;
}

.furry-guide-meta a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-decoration-color: var(--color-secondary);
  text-underline-offset: 3px;
}

.furry-guide-content > .furry-guide-lead {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.9;
}

.furry-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin: 0 0 17px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.5;
}

.furry-breadcrumb a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-decoration-color: var(--color-secondary);
  text-underline-offset: 3px;
}

.furry-guide-content > .furry-guide-note {
  margin: 18px 0 30px !important;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.75;
}

.furry-quick-answer {
  margin: 0 0 30px;
  padding: 20px 22px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-soft);
}

.furry-quick-answer h2 {
  margin: 0 0 10px;
  color: var(--color-primary-dark);
  font-size: 18px;
  line-height: 1.4;
}

.furry-quick-answer > p:not(.page-eyebrow) {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
}

.furry-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 16px;
  margin-top: 16px;
}

.furry-quick-links a {
  min-width: 0;
  padding: 8px 10px;
  border-left: 3px solid var(--color-secondary);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.5;
  background: color-mix(in srgb, var(--color-surface) 62%, transparent);
}

.furry-guide-content em {
  color: var(--color-primary-dark);
  font-style: normal;
  font-weight: 850;
}

.source-marker {
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.furry-guide-glossary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  margin: 0 0 18px;
  border-top: 1px solid var(--color-border);
}

.furry-guide-glossary div {
  min-width: 0;
  padding: 14px 2px;
  border-bottom: 1px solid var(--color-border);
}

.furry-guide-glossary dt {
  margin-bottom: 5px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.furry-guide-glossary dd {
  margin: 0;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.furry-guide-list {
  margin: 17px 0 18px;
}

.furry-guide-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  margin-bottom: 19px;
  border-top: 1px solid var(--color-border);
}

.furry-guide-facts article {
  min-width: 0;
  padding: 17px 2px 16px;
  border-bottom: 1px solid var(--color-border);
}

.furry-guide-facts h3 {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 14px;
  line-height: 1.5;
}

.furry-guide-facts article p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.furry-brand-bridge {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 20px 22px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-soft);
}

.furry-brand-character {
  width: 138px;
  height: 182px;
  border-radius: 8px;
}

.furry-brand-bridge h3 {
  margin: 0 0 10px;
  color: var(--color-primary-dark);
  font-size: 17px;
  line-height: 1.45;
}

.legal-section .furry-brand-bridge p:not(.page-eyebrow) {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.furry-brand-bridge .page-actions {
  margin-top: 14px;
}

.furry-guide-faq {
  border-top: 1px solid var(--color-border);
}

.furry-guide-faq details {
  border-bottom: 1px solid var(--color-border);
}

.furry-guide-faq summary {
  min-height: 50px;
  padding: 14px 2px;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
  cursor: pointer;
}

.furry-guide-faq details p {
  margin: 0;
  padding: 0 2px 15px 20px;
  font-size: 13px;
  line-height: 1.75;
}

.furry-guide-sources {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-border);
}

.furry-guide-sources li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  padding: 15px 2px;
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 18px;
}

.furry-guide-sources li > span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
}

.legal-section .furry-guide-sources p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.furry-guide-sources li > a {
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-color: var(--color-secondary);
  text-underline-offset: 3px;
  white-space: nowrap;
}

.furry-guide-actions {
  justify-content: flex-end;
}

.storage-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 16px 0;
  padding: 14px 15px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface-soft);
}

.storage-control p {
  margin: 0;
}

.storage-control .small-button {
  flex: 0 0 auto;
  min-width: 138px;
  min-height: 40px;
  border: 0;
  cursor: pointer;
}

.brand,
.brand-mark,
.hero-text,
.coming-soon,
.soon-panel,
.soon-list {
  /* Compatibility for existing subpages. */
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.site-header {
  display: grid;
  grid-template-columns: 220px 1fr 48px;
  align-items: center;
  width: min(1452px, calc(100% - 84px));
  min-height: 76px;
  margin: 14px auto 0;
  padding: 12px 28px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.site-header .main-nav {
  display: flex;
  justify-content: center;
  gap: 13px;
}

.site-header .main-nav a {
  display: grid;
  place-items: center;
  min-width: 98px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--hot);
  font-size: 14px;
  font-weight: 700;
  background: color-mix(in srgb, var(--color-surface) 70%, transparent);
}

.site-header .main-nav a.is-active {
  color: #fff;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
}

.coming-soon {
  display: grid;
  align-items: center;
  width: min(1452px, calc(100% - 84px));
  min-height: 640px;
  margin: 14px auto;
}

.soon-panel {
  width: 760px;
  padding: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.soon-panel h1 {
  margin: 0 0 18px;
  color: var(--hot);
  font-size: 64px;
}

.hero-text {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.soon-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.soon-list li {
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: color-mix(in srgb, var(--color-surface) 64%, transparent);
}

@media (max-width: 1535px) {
  body.has-scaled-canvas {
    min-height: calc(984px * var(--page-scale, 1));
  }
}

@media (max-width: 1200px) {
  html,
  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .site-canvas {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 8px;
    overflow: visible;
    transform: none;
  }

  .topbar,
  .hero-card,
  .dashboard,
  .footer,
  .subpage-main {
    width: 100%;
    margin-left: 0;
  }

  .topbar,
  .hero-card,
  .dashboard,
  .footer {
    height: auto;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 12px 12px;
  }

  .top-logo {
    width: 150px;
    height: 48px;
  }

  .nav-pills {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .nav-pills a,
  .nav-pills a:nth-child(4) {
    width: 100%;
    min-height: 44px;
  }

  .small-button,
  .category-tabs a {
    min-height: 44px;
  }

  .top-icons {
    gap: 8px;
  }

  .top-icons a,
  .theme-toggle {
    width: 44px;
    height: 44px;
  }

  main {
    margin-top: 10px;
  }

  .hero-card {
    display: grid;
    gap: 10px;
    padding: 0;
  }

  .hero-logo,
  .intro-bubble {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .hero-logo {
    height: auto;
    aspect-ratio: 915 / 318;
  }

  .hero-logo img {
    width: 100%;
    height: 100%;
  }

  .intro-bubble {
    height: auto;
    padding: 19px 17px 17px 19px;
  }

  .intro-bubble p {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .dashboard {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .dashboard-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .latest-panel,
  .about-panel,
  .news-panel,
  .shop-panel,
  .social-panel {
    width: 100%;
    height: auto;
  }

  .panel {
    padding: 18px 16px;
  }

  .work-gallery .asset-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .work-gallery .image-frame {
    grid-template-rows: minmax(0, 1fr) 21px;
    width: 100%;
    height: auto;
    aspect-ratio: 119 / 140;
  }

  .work-gallery .image-frame img {
    height: calc(100% + 1px);
  }

  .work-gallery-title {
    padding-inline: 3px;
    font-size: 9px;
  }

  .wide {
    min-height: 44px;
  }

  .center-column,
  .right-column {
    width: 100%;
    gap: 10px;
  }

  .about-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-character {
    width: min(100%, 240px);
    height: auto;
    margin: 0 auto;
    aspect-ratio: 190 / 245;
  }

  .profile-box {
    width: 100%;
  }

  blockquote {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 14px;
  }

  .news-list li {
    min-height: 44px;
    height: auto;
  }

  .news-list li > a {
    grid-template-columns: minmax(0, 1fr) 78px;
    min-height: 44px;
    gap: 8px;
  }

  .more {
    min-height: 44px;
  }

  .social-panel {
    min-height: 178px;
  }

  .guide-panel-content {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-left: 0;
  }

  .guide-panel .small-button {
    width: 100%;
  }

  .social-links {
    grid-template-columns: repeat(5, 44px);
    gap: 10px 12px;
  }

  .social-links a {
    width: 44px;
    height: 44px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 10px;
    padding: 22px 16px;
  }

  .thanks {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-links a {
    min-height: 44px;
  }

  .meter {
    justify-self: center;
  }

  .subpage-main {
    min-height: auto;
    margin-top: 10px;
  }

  .page-intro {
    min-height: 0;
    padding: 21px 18px;
  }

  .page-intro h1 {
    font-size: 23px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .about-page-intro {
    padding-right: 18px;
  }

  .furry-definition {
    position: static;
    width: 100%;
    margin-top: 16px;
    padding: 14px 15px;
  }

  .furry-definition h2 {
    font-size: 15px;
  }

  .furry-definition p {
    font-size: 12px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .about-profile-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 18px;
  }

  .about-page-character {
    width: min(100%, 286px);
    height: auto;
    margin: 0 auto;
    aspect-ratio: 286 / 438;
  }

  .about-page-copy {
    grid-template-rows: auto;
    gap: 10px;
  }

  .prose-panel,
  .work-fields-panel {
    padding: 20px 18px;
  }

  .work-field-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .page-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-actions .small-button {
    min-height: 44px;
  }

  .portfolio-panel,
  .news-archive-panel {
    min-height: 0;
    margin-top: 10px;
    padding: 18px 14px 22px;
  }

  .portfolio-toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .portfolio-toolbar button {
    width: 100%;
    min-width: 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-card {
    grid-template-rows: auto auto;
  }

  .work-card img {
    height: auto;
    aspect-ratio: 1;
  }

  .work-modal[open] {
    display: block;
  }

  .work-modal {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    overflow-y: auto;
  }

  .modal-image-wrap {
    min-height: 0;
    padding: 14px;
  }

  .modal-image-wrap img {
    height: auto;
    max-height: 52vh;
  }

  .modal-copy {
    padding: 22px 18px;
  }

  .notice-link {
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: 0;
    padding: 14px;
  }

  .notice-heading {
    flex-basis: calc(100% - 58px);
  }

  .notice-heading small {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .notice-item time {
    flex-basis: 100%;
    text-align: left;
  }

  .hub-page-grid,
  .shop-preview-grid,
  .link-directory {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .hub-page-card {
    min-height: 0;
    padding: 20px 18px;
  }

  .feedback-form .small-button {
    width: 100%;
  }

  .contact-address {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 17px;
  }

  .shop-preview-card img {
    height: auto;
    aspect-ratio: 1;
  }

  .link-directory-item {
    grid-template-columns: 48px 1fr 20px;
    min-height: 112px;
    padding: 16px;
  }

  .link-directory-item > span {
    width: 48px;
    height: 48px;
  }

  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 10px;
  }

  .legal-summary {
    position: static;
    padding: 20px 18px;
  }

  .legal-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .legal-nav a {
    display: grid;
    align-items: center;
    min-height: 44px;
  }

  .legal-content {
    padding: 23px 18px 28px;
  }

  .legal-section + .legal-section {
    margin-top: 24px;
    padding-top: 22px;
  }

  .legal-section h2 {
    font-size: 17px;
  }

  .legal-details {
    grid-template-columns: 1fr;
  }

  .legal-table {
    min-width: 680px;
  }

  .storage-control {
    align-items: stretch;
    flex-direction: column;
  }

  .storage-control .small-button {
    width: 100%;
    min-height: 44px;
  }

  .legal-reference-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-reference-links a {
    min-height: 44px;
    text-align: center;
  }

  .furry-guide-intro {
    min-height: 0;
  }

  .guide-library {
    gap: 10px;
    margin-top: 10px;
  }

  .guide-library-item {
    min-height: 92px;
  }

  .furry-guide-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .furry-guide-content > .furry-guide-lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .furry-quick-answer {
    padding: 18px 15px;
  }

  .furry-quick-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .furry-quick-links a {
    display: grid;
    align-items: center;
    min-height: 44px;
  }

  .furry-guide-glossary,
  .furry-guide-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .furry-brand-bridge {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 18px 15px;
  }

  .furry-brand-character {
    width: 138px;
    height: 182px;
    margin: 0 auto;
  }

  .furry-guide-faq summary {
    min-height: 52px;
    padding: 14px 2px;
  }

  .furry-guide-faq details p {
    padding-left: 12px;
  }

  .furry-guide-sources li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
  }

  .furry-guide-sources li > a {
    grid-column: 2;
    min-height: 44px;
    padding-top: 9px;
  }

  .furry-guide-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .guide-library {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 1200px) {
  .work-gallery {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }

  .portfolio-toolbar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 700px) and (max-width: 1200px) {
  .nav-pills {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 960px) and (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
