@font-face {
  font-family: Pretendard;
  src: url("../fonts/PretendardVariable.woff2") format("woff2-variations");
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BookkMyungjo;
  src: url("../fonts/BookkMyungjo-Lt.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: BookkMyungjo;
  src: url("../fonts/BookkMyungjo-Bd.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #f7f6f3;
  --bg-2: #f3f2ee;
  --fg: #18181b;
  --fg-2: #27272a;
  --muted: #71717a;
  --muted-2: #a1a1aa;
  --line: #e4e4e7;
  --line-2: #f4f4f5;
  --accent: #3f3f46;
  --accent-2: #27272a;
  --accent-soft: #f4f4f5;
  --accent-line: #d4d4d8;
  --ask: #18181b;
  --max: 1280px;
  --font: Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  --white-gradient: repeating-linear-gradient(100deg, #fff 0%, #fff 7%, transparent 10%, transparent 12%, #fff 16%);
  --aurora: repeating-linear-gradient(100deg, #71717a 10%, #d4d4d8 15%, #a1a1aa 20%, #e4e4e7 25%, #52525b 30%);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db #f9fafb;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f9fafb; }
::-webkit-scrollbar-thumb { background: #d1d5db; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }
::-webkit-scrollbar-corner { background: #f9fafb; }

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg, a { -webkit-user-drag: none; }

input, textarea, select {
  -webkit-user-select: text;
  user-select: text;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--ask);
  color: #fff;
}

.skip:focus { top: 12px; }

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .shell { width: min(var(--max), calc(100% - 48px)); }
}

@media (min-width: 1024px) {
  .shell { width: min(var(--max), calc(100% - 64px)); }
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body { padding-top: 64px; background: var(--bg); }
body.page-home { padding-top: 0; background: var(--bg); }
body.page-portfolio {
  padding-top: 0;
  background: #050505;
}
body.page-maintenance { background: #fff; }
body.page-privacy .site-header,
body.page-terms .site-header {
  background: #fff;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-bar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 32px;
  flex: none;
  color: var(--fg-2);
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 32px;
  height: 32px;
  flex: none;
  object-fit: contain;
  background: transparent;
}

.wordmark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 32px;
  color: var(--fg-2);
}

.nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: none;
}

.nav > a,
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 64px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
}

.nav > a:hover,
.nav-parent:hover,
.nav > a[aria-current="page"],
.nav-parent[aria-current="page"],
.nav-mega.is-open .nav-parent,
.nav-mega.is-pinned .nav-parent { color: #111827; }

.nav-chevron {
  display: block;
  flex: none;
  transition: transform 0.2s;
}

.nav-mega.is-open .nav-chevron,
.nav-mega.is-pinned .nav-chevron,
.nav-mega:hover .nav-chevron,
.account-btn[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

body.page-portfolio .site-header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent);
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.page-portfolio .site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
body.page-portfolio .wordmark,
body.page-portfolio .brand,
body.page-portfolio .nav > a,
body.page-portfolio .nav-parent,
body.page-portfolio .account-btn,
body.page-portfolio .auth-links > a,
body.page-portfolio .auth-links .nav-login {
  color: #f4f4f5;
}
body.page-portfolio .nav > a:hover,
body.page-portfolio .nav-parent:hover,
body.page-portfolio .nav > a[aria-current="page"],
body.page-portfolio .nav-parent[aria-current="page"],
body.page-portfolio .nav-mega.is-open .nav-parent,
body.page-portfolio .nav-mega.is-pinned .nav-parent,
body.page-portfolio .account-btn:hover,
body.page-portfolio .auth-links > a:hover {
  color: #fff;
}
body.page-portfolio .header-cta .btn-ask {
  background: #fff;
  color: #111;
  border-color: #fff;
}
body.page-portfolio .header-cta .btn-ask:hover {
  background: #e4e4e7;
  color: #111;
}
body.page-portfolio .site-footer {
  background: #050505;
  color: #a1a1aa;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
body.page-portfolio .site-footer .wordmark,
body.page-portfolio .site-footer .brand,
body.page-portfolio .site-footer h2,
body.page-portfolio .site-footer a {
  color: #e4e4e7;
}
body.page-portfolio .site-footer .desc,
body.page-portfolio .site-footer .footer-reg,
body.page-portfolio .site-footer .disclaimer,
body.page-portfolio .site-footer span {
  color: #a1a1aa;
}

.nav-mega { position: static; }

.mega-panel {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 64px;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transform-origin: top center;
  transition:
    opacity 0.2s ease,
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0.25s;
}

.mega-panel-products {
  transform: translateY(-10px) scaleY(0.95);
}

.mega-shell {
  width: min(1280px, calc(100% - 48px));
  max-width: 1280px;
  margin-inline: auto;
  padding: 32px;
}

.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-panel {
  z-index: 91;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.2s ease,
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s;
}

.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-panel-products {
  transform: translateY(0) scaleY(1);
}

@keyframes mega-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mega-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mega-rise-sm {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-shell {
  animation: mega-fade 0.3s ease both;
  animation-delay: 0.1s;
}

.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-row:not(.mega-row-sub) > .mega-col {
  animation: mega-rise 0.3s ease-out both;
}

.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-row:not(.mega-row-sub) > .mega-col:nth-child(1) { animation-delay: 0.15s; }
.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-row:not(.mega-row-sub) > .mega-col:nth-child(2) { animation-delay: 0.2s; }
.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-row:not(.mega-row-sub) > .mega-col:nth-child(3) { animation-delay: 0.25s; }
.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-row:not(.mega-row-sub) > .mega-col:nth-child(4) { animation-delay: 0.3s; }

.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-row-sub {
  animation: mega-fade 0.3s ease both;
  animation-delay: 0.3s;
}

.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-row-sub > .mega-col-sub {
  animation: mega-rise-sm 0.25s ease-out both;
}

.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-row-sub > .mega-col-sub:nth-child(1) { animation-delay: 0.35s; }
.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-row-sub > .mega-col-sub:nth-child(2) { animation-delay: 0.38s; }
.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-row-sub > .mega-col-sub:nth-child(3) { animation-delay: 0.41s; }
.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-row-sub > .mega-col-sub:nth-child(4) { animation-delay: 0.44s; }

.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-section-title {
  animation: mega-rise-sm 0.3s ease-out both;
  animation-delay: 0.12s;
}

.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-sol-grid a {
  animation: mega-rise 0.3s ease-out both;
}

.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-sol-grid a:nth-child(1) { animation-delay: 0.15s; }
.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-sol-grid a:nth-child(2) { animation-delay: 0.18s; }
.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-sol-grid a:nth-child(3) { animation-delay: 0.21s; }
.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-sol-grid a:nth-child(4) { animation-delay: 0.24s; }
.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-sol-grid a:nth-child(5) { animation-delay: 0.27s; }
.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-sol-grid a:nth-child(6) { animation-delay: 0.3s; }
.nav-mega:is(:hover, :focus-within, .is-open, .is-pinned) .mega-sol-grid a:nth-child(7) { animation-delay: 0.33s; }

.mega-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.mega-col { display: grid; gap: 16px; align-content: start; }

.mega-col-title {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.35px;
  color: #111827;
}

.mega-col ul,
.mega-flat {
  list-style: none;
  display: grid;
  gap: 12px;
}

.mega-col a,
.mega-flat a {
  display: block;
  padding: 0;
  color: inherit;
}

.mega-col a:hover strong,
.mega-flat a:hover strong,
.mega-flat a:hover { color: var(--accent); }

.mega-col strong,
.mega-flat strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.mega-col span,
.mega-flat span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
}

.mega-row-sub {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  align-items: start;
}

.mega-col-sub {
  gap: 12px;
  align-content: start;
}

.mega-col-kicker {
  margin: 0;
  min-height: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #111827;
}

.mega-col-sub ul {
  gap: 8px;
  align-content: start;
}

.mega-col-sub strong {
  font-size: 12px;
  font-weight: 500;
  color: #4b5563;
}

.mega-col-sub a span { display: none; }

.mega-section-title {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.mega-sol-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.mega-sol-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 8px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.mega-sol-grid a:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.nav-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.i-discord {
  display: block;
  flex: none;
  width: 18px;
  height: 14px;
}

.mobile-nav a.nav-discord {
  display: flex;
}

.mega-more-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.mega-sol,
.mega-more {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 720px;
}

.header-cta {
  display: none;
  margin-left: 0;
  align-items: center;
  gap: 8px;
  flex: none;
}

.logout-form { display: contents; margin: 0; }

.auth-links > a,
.auth-links .nav-login,
.account-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 8px 12px;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
}

.auth-links > a:hover,
.auth-links .nav-login:hover,
.account-btn:hover { color: var(--fg-2); }

.account-switch { position: relative; }

.account-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 160px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.account-menu[hidden] { display: none; }

.account-menu a,
.account-menu button {
  display: block;
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-align: left;
}

.account-menu a:hover,
.account-menu a[aria-current="page"],
.account-menu button:hover {
  background: var(--bg-2);
  color: var(--fg-2);
}

.header-cta .btn-ask {
  height: 38px;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid #111827;
  border-radius: 0;
  background: #111827;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.header-cta .btn-ask:hover { background: #1f2937; color: #fff; }

.menu-btn {
  margin-left: auto;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 13px;
  color: #374151;
}

.mobile-nav {
  display: grid;
  padding: 8px 20px 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  max-height: calc(100dvh - 64px);
  overflow: auto;
}

.mobile-nav[hidden] { display: none; }

.mobile-nav a,
.mobile-nav button {
  padding: 11px 0;
  border-bottom: 1px solid var(--line-2);
  color: #374151;
  text-align: left;
  font-size: 14px;
}

.mobile-label {
  margin: 14px 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
}

@media (min-width: 1180px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-btn,
  .mobile-nav { display: none !important; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  box-sizing: border-box;
}

.btn-fill {
  background: #111827;
  color: #fff;
  border: 2px solid #111827;
}

.btn-fill:hover { background: #1f2937; border-color: #1f2937; color: #fff; }

.btn-line {
  border: 2px solid #d1d5db;
  color: #374151;
  background: transparent;
}

.btn-line:hover { border-color: #9ca3af; }

.i-arrow {
  display: inline-block;
  flex: none;
  margin-left: 2px;
}

.kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 64px;
  padding: 64px 0 80px;
  background: #f7f6f3;
  min-height: 476px;
}

.hero-aurora-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-aurora {
  position: absolute;
  inset: -10px;
  opacity: 0.5;
  filter: blur(10px) invert(1);
  background-image: var(--white-gradient), var(--aurora);
  background-size: 300% 200%;
  background-position: 50% 50%, 50% 50%;
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, #000 10%, transparent 70%);
  mask-image: radial-gradient(ellipse at 100% 0%, #000 10%, transparent 70%);
  will-change: transform;
  animation: aurora 60s linear infinite;
}

.hero-aurora::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--white-gradient), var(--aurora);
  background-size: 200% 100%;
  background-attachment: fixed;
  mix-blend-mode: difference;
}

@keyframes aurora {
  from { background-position: 50% 50%, 50% 50%; }
  to { background-position: 350% 50%, 350% 50%; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
}

.hero-copy { max-width: 576px; text-align: left; }

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1;
  color: #111827;
}

.grad-hot,
.grad-blue {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.grad-hot {
  background-image: linear-gradient(to right, #57534e, #a8a29e, #78716c);
}

.grad-blue {
  background-image: linear-gradient(to right, #3f3f46, #71717a, #a1a1aa, #d4d4d8);
}

.lead {
  margin: 0 0 32px;
  max-width: 38em;
  color: var(--muted);
  font-size: 16px;
  word-break: keep-all;
}

.hero .lead {
  margin: 0 0 48px;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.4;
  max-width: 36rem;
  white-space: pre-line;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.logo-strip {
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  background: #fff;
  padding: 24px 0;
}

.logo-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 64px;
  overflow: hidden;
}

.logo-strip p {
  margin: 0;
  flex: none;
  width: 11rem;
  padding-right: 24px;
  margin-right: 8px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-align: right;
  white-space: nowrap;
}

.logo-marquee {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 56px;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.logo-marquee::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(to left, #fff, transparent); }

.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.logo-marquee:hover .logo-track { animation-play-state: paused; }

.logo-set {
  display: flex;
  align-items: center;
  gap: 160px;
  padding-right: 160px;
}

.logo-set img {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  opacity: 0.92;
  filter: drop-shadow(0 0 0.7px rgba(24, 24, 27, 0.35));
}

.logo-marquee:hover .logo-set img {
  opacity: 1;
}

.logo-set img.logo-mark-tall {
  height: 72px;
  max-width: 180px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.home-band { padding: 80px 0; background: #fff; }

.home-band h2,
.feat-band h2,
.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.9px;
  color: var(--fg-2);
  word-break: keep-all;
}

.band-lead {
  margin: 0 0 32px;
  max-width: 42em;
  color: #4b5563;
  font-size: 18px;
  word-break: keep-all;
}

.prod-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 8px 0 28px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}

.prod-tabs::-webkit-scrollbar { display: none; }

.prod-tabs button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.prod-tabs button[aria-selected="true"] {
  color: var(--fg-2);
  font-weight: 700;
  box-shadow: inset 0 -2px 0 var(--fg-2);
}

.prod-grid {
  display: grid;
  gap: 16px;
}

.prod-grid[hidden] { display: none; }

.prod-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 0;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.prod-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.prod-card h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 2px solid var(--accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg-2);
  line-height: 1.3;
}

.prod-card-mark {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.prod-card-mark.is-best {
  background: linear-gradient(90deg, #dc2626 0%, #ea580c 48%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.prod-card-mark.is-new {
  background: linear-gradient(90deg, #7c3aed 0%, #8b5cf6 38%, #14b8a6 72%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.prod-card-mark.is-slot {
  background: linear-gradient(180deg, #f3f4f6 0%, #8b9098 30%, #2c3036 68%, #c4c8ce 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.prod-card p,
.feat-grid p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
  flex: 1;
}

.prod-card > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.prod-card:hover > span { color: var(--accent-2); }

.feat-band {
  padding: 64px 0;
  background: #fff;
}

.feat-grid {
  display: grid;
  gap: 16px;
}

.feat-grid > div {
  padding: 24px;
  background: #f9fafb;
}

.feat-grid > div:hover { background: #f3f4f6; }

.feat-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg-2);
}

.cases-band {
  padding: 80px 0;
  background: linear-gradient(to right bottom, var(--accent), var(--accent-2));
  color: #fff;
}

.cases-band h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.9px;
  color: #fff;
}

.cases-band .band-lead {
  color: rgba(212, 212, 216, 0.85);
  margin-bottom: 48px;
  font-size: 18px;
}

.case-slide {
  display: grid;
  background: #fff;
  color: var(--fg);
  overflow: hidden;
}

.case-slide[hidden] { display: none; }

.case-visual {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.16), transparent 36%),
    linear-gradient(135deg, #d4d4d8 0%, #52525b 42%, #18181b 100%);
  color: #fff;
  overflow: hidden;
}

.case-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to top, transparent 10%, #000 80%);
}

.case-visual.has-logo {
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #0b0b0d;
}

.case-visual.has-logo::before { display: none; }

.case-visual span {
  position: relative;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.case-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: min(78%, 340px);
  max-height: 72%;
  object-fit: contain;
}

.case-body {
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.case-brand {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111827;
}

.case-body h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  word-break: keep-all;
}

.case-copy {
  margin: -4px 0 16px;
  color: var(--muted);
  font-size: 15px;
  word-break: keep-all;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.case-tags span {
  padding: 4px 10px;
  border: 1px solid rgba(212, 212, 216, 0.85);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.case-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.case-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.case-nav button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
}

.case-dots {
  display: flex;
  gap: 6px;
}

.case-dots button {
  width: 18px;
  height: 4px;
  border: 0;
  background: rgba(255,255,255,0.35);
}

.case-dots button.is-on { background: #fff; }

.ready-band {
  padding: 80px 0;
  background: linear-gradient(to right bottom, var(--accent), var(--accent-2));
  color: #fff;
}

.ready-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-align: center;
}

.ready-band h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.9px;
}

.ready-band p {
  margin: 0;
  max-width: 36em;
  color: rgba(212, 212, 216, 0.85);
  font-size: 18px;
}

.ready-inner .actions { justify-content: center; gap: 16px; }

.btn-white {
  background: #fff;
  color: var(--accent);
  border: 0;
  height: 56px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 600;
}

.btn-white:hover { background: var(--accent-soft); color: var(--accent-2); }

.btn-ghost {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  height: 56px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 600;
}

.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 36px;
  background:
    radial-gradient(ellipse 55% 90% at 100% 0%, rgba(212, 212, 216, 0.65), transparent 58%),
    radial-gradient(ellipse 35% 70% at 80% 10%, rgba(168, 162, 158, 0.28), transparent 50%),
    #f7f6f3;
}

.page-hero-aurora { display: none; }

.page-hero .shell { position: relative; z-index: 1; }
.page-hero .kicker { margin-bottom: 10px; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero:not(:has(.lead)) h1 { margin-bottom: 0; }
.page-hero .lead { margin-bottom: 0; font-size: 18px; color: #4b5563; }

.page-head { padding: 48px 0 8px; }

.page-head h1,
.band h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg-2);
}

.page-head p,
.band > .shell > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  word-break: keep-all;
}

.page-section { padding: 12px 0 80px; }

.about-body { padding: 8px 0 96px; }
.about-studio {
  display: grid;
}
.about-studio > div {
  display: grid;
  grid-template-columns: 9.5em minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}
.about-studio dt {
  font-size: 13px;
  color: #737373;
}
.about-studio dd {
  margin: 0;
  font-weight: 600;
  color: #171717;
  word-break: keep-all;
}

.admin-page { padding-bottom: 96px; }

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 16px;
}

.account-tabs + .account-tabs {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.account-tabs a { font-size: 14px; color: var(--muted); }
.account-tabs a:hover,
.account-tabs a[aria-current="page"] { color: var(--fg-2); font-weight: 600; }

.inquiry-search {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: end;
  max-width: 640px;
  margin-bottom: 28px;
}

.inquiry-search.admin-search {
  grid-template-columns: 1fr 140px 1fr auto;
  max-width: 920px;
}

.inquiry-search label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #374151;
}

.inquiry-search input,
.inquiry-search select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--fg);
  padding: 10px 12px;
  font: 14px/1.4 var(--font);
  border-radius: 0;
}

.inquiry-list { display: grid; gap: 0; padding-bottom: 72px; }

.inquiry-head,
.inquiry-item summary {
  display: grid;
  grid-template-columns: 8rem auto 1fr;
  align-items: center;
  column-gap: 20px;
}

.inquiry-head {
  padding: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.inquiry-item {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.inquiry-item:last-child { border-bottom: 1px solid var(--line); }

.inquiry-item summary {
  cursor: pointer;
  list-style: none;
}

.inquiry-item summary::-webkit-details-marker { display: none; }

.inquiry-item .ticket-no {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--fg-2);
  -webkit-user-select: text;
  user-select: text;
}

.inquiry-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.inquiry-date {
  justify-self: end;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.inquiry-head .inquiry-date { font-size: 14px; color: var(--muted); }

.inquiry-body { margin-top: 10px; color: var(--muted); font-size: 14px; }
.inquiry-body p { margin: 0 0 8px; }
.inquiry-fields { display: grid; gap: 6px; margin: 0 0 12px; }
.inquiry-fields p { margin: 0; }
.inquiry-label { color: var(--fg-2); font-weight: 600; margin-right: 4px; }

.status-tag {
  font-size: 12px;
  border: 1px solid var(--line);
  padding: 2px 8px;
  color: #374151;
  border-radius: 999px;
}

.status-tag.is-open { color: var(--accent); border-color: var(--accent-line); }
.status-tag.is-wait { color: #b45309; border-color: #fde68a; }
.status-tag.is-done { color: var(--muted); }
.status-tag.is-cancel { color: #b91c1c; border-color: #fecaca; }

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 8px 0 0;
}

.inquiry-action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 0 1px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
}

.inquiry-action:hover { color: var(--muted); }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.btn-warn {
  border: 2px solid #fecaca;
  color: #b91c1c;
  background: transparent;
}

.btn-warn:hover { border-color: #f87171; }

.shot-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; }
.shot-item {
  position: relative;
  width: 132px;
}
.shot-item img {
  display: block;
  width: 132px;
  height: 88px;
  object-fit: cover;
  border: 1px solid var(--line);
  pointer-events: none;
}

.admin-table-wrap { overflow-x: auto; padding-bottom: 72px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th,
.admin-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.admin-table th { color: var(--muted); font-weight: 600; }
.admin-table a { color: var(--accent); }

.check-inline { display: flex !important; align-items: center; gap: 8px; }

.sec-head { margin: 0 0 16px; font-size: 18px; font-weight: 600; }
.admin-member-block {
  margin-top: 40px;
  max-width: 960px;
}
.admin-member-block .inquiry-list { padding-bottom: 24px; }

.service-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.service-list a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.service-list a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.service-list strong {
  padding-left: 12px;
  border-left: 2px solid var(--accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg-2);
}

.service-list a span { color: #4b5563; font-size: 14px; line-height: 1.65; }

.item-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.item-list li {
  color: var(--muted);
  font-size: 14px;
  padding-left: 14px;
  position: relative;
}

.item-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--fg-2);
}

.process-page .shell + .shell { margin-top: 40px; }

.process-h {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg-2);
}

.process-steps {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 0;
}

.process-steps li {
  padding: 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.process-n {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.process-steps h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-2);
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  word-break: keep-all;
}

.process-page .panel .note { margin: 0 0 12px; }

@media (min-width: 720px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .process-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.detail-grid { display: grid; gap: 28px; }
.panel {
  padding: 24px;
  background: #f9fafb;
}

.panel h2, .panel h3 { margin: 0 0 10px; font-size: 18px; font-weight: 700; color: var(--fg-2); }
.note { color: var(--muted); font-size: 14px; word-break: keep-all; }
.panel .btn { margin-top: 16px; }

.contact-grid { display: grid; gap: 32px; padding-bottom: 72px; }

form.inquiry { display: grid; gap: 14px; }

.inquiry label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #374151;
}

.inquiry input:not([type="file"]),
.inquiry textarea,
.inquiry select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--fg);
  padding: 10px 12px;
  font: 14px/1.4 var(--font);
  border-radius: 0;
  color-scheme: light;
}

.inquiry .check-inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.inquiry .check-inline input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  flex: none;
  border: 1px solid var(--line);
  accent-color: var(--fg);
}

.inquiry .legal-agree-box {
  display: grid;
  border: 1px solid var(--line);
  background: #fff;
}

.inquiry .legal-agree {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 13px 16px;
  cursor: pointer;
  font-weight: 400;
  color: var(--fg-2);
  white-space: normal;
}

.inquiry .legal-agree + .legal-agree {
  border-top: 1px solid var(--line-2);
}

.inquiry .legal-agree:hover {
  background: #fafafa;
}

.inquiry .legal-agree input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.inquiry .legal-check {
  flex: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #a1a1aa;
  background: #fff;
  pointer-events: none;
}

.inquiry .legal-agree:hover .legal-check {
  border-color: var(--fg);
}

.inquiry .legal-agree input:checked + .legal-check {
  background: var(--fg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.2 6.6 11.2 12.5 4.8'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
  border-color: var(--fg);
}

.inquiry .legal-agree input:focus-visible + .legal-check {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.inquiry .legal-agree-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--fg-2);
}

.inquiry .legal-agree-text a {
  color: var(--fg);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inquiry .legal-agree-text a:hover {
  color: var(--accent);
}

.inquiry .legal-agree-text em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  margin: 0;
  padding: 0 6px;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: var(--muted);
  border: 1px solid var(--line);
  background: #fff;
}

.inquiry input:-webkit-autofill {
  -webkit-text-fill-color: var(--fg);
  box-shadow: 0 0 0 1000px #fff inset;
}

.inquiry select {
  appearance: none;
  padding-right: 40px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.2 1.2 6 6l4.8-4.8'/%3E%3C/svg%3E") no-repeat right 12px center;
}

.type-picks { display: grid; gap: 10px; margin: 0; padding: 0; border: 0; }
.type-picks legend { padding: 0; font-size: 13px; color: #374151; }
.type-step { display: grid; gap: 6px; }
.type-step[hidden] { display: none; }
.type-step-h { margin: 4px 0 0; font-size: 12px; font-weight: 600; color: #737373; }
.type-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.type-grid.is-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.type-grid.is-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.type-grid.is-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.type-grid.is-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.inquiry .type-pick { display: flex; margin: 0; gap: 0; }
.inquiry .type-pick input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.type-pick span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: #4b5563;
  font-size: 14px;
  text-align: center;
  word-break: keep-all;
  cursor: pointer;
}

.type-pick:hover span { border-color: #9ca3af; color: var(--fg-2); }
.type-pick input:checked + span {
  border-color: var(--ask);
  background: var(--ask);
  color: #fff;
}

.inquiry textarea { min-height: 140px; resize: vertical; }

.file-pick {
  display: grid;
  gap: 6px;
}

.file-pick-label {
  font-size: 13px;
  color: #374151;
}

.inquiry label.file-pick-box,
.file-pick-box {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 16px 18px;
  border: 1px dashed #d1d5db;
  background: #fafafa;
  cursor: pointer;
}

.file-pick-box:hover,
.file-pick-box:focus-within {
  border-color: #9ca3af;
  background: #f4f4f5;
}

.file-pick-box.is-picked {
  border-style: solid;
  border-color: var(--line);
  background: #fff;
}

.file-pick-input,
.inquiry input.file-pick-input[type="file"] {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.file-pick-input::file-selector-button {
  display: none;
}

.file-pick-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  pointer-events: none;
}

.file-pick-btn {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--fg-2);
  font-size: 14px;
  font-weight: 600;
}

.file-pick-name {
  min-width: 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-note, .form-ok, .form-err, .field-err { font-size: 13px; color: var(--muted); }
.form-err, .field-err { color: #b91c1c; }
.form-ok { color: #166534; }
.inquiry input.is-invalid,
.inquiry textarea.is-invalid { border-color: #b91c1c; }
.inquiry label .form-ok { margin: 0; }

.field-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.field-ok {
  font-size: 12px;
  font-weight: 600;
  color: #166534;
}

.site-footer {
  padding: 64px 0 32px;
  background: var(--bg-2);
  color: var(--muted);
  font-size: 14px;
}

.footer-top {
  display: grid;
  gap: 32px;
}

.site-footer .desc {
  margin: 16px 0 0;
  max-width: 28ch;
  font-size: 14px;
  color: #4b5563;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
}

.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a { color: #4b5563; }
.site-footer a:hover { color: #111827; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #6b7280;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-reg {
  margin: 12px 0 0;
  font-size: 12px;
  color: #9ca3af;
  display: grid;
  gap: 4px;
}

.footer-reg p {
  margin: 0;
}

.disclaimer {
  margin: 16px 0 0;
  font-size: 11px;
  color: #9ca3af;
  max-width: 90ch;
}

.done-page { max-width: 52rem; padding-bottom: 80px; }
.done-page .actions { margin-top: 28px; }
.done-page .ticket-no {
  margin: 16px 0 20px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  -webkit-user-select: text;
  user-select: text;
}

.done-page .done-lead,
.done-page .done-note { word-break: keep-all; }
.done-page .done-lead { margin: 0 0 12px; color: var(--muted); }
.done-page .done-note {
  margin: 0;
  color: var(--fg-2);
  text-decoration: underline;
  text-underline-offset: 4px;
}

form.inquiry.is-sending { pointer-events: none; }
form.inquiry.is-sending .btn[disabled] { opacity: 0.7; cursor: wait; }

.lost { padding: 80px 0 120px; max-width: 36ch; }
.lost h1 { margin: 0 0 12px; font-size: 28px; font-weight: 600; }

.auth-form { max-width: 520px; padding-bottom: 72px; }
form.inquiry.auth-form { padding-bottom: 96px; }
.auth-form:has(+ .account-leave),
.auth-form:has(+ .admin-member-block) { padding-bottom: 16px; }
.account-leave {
  margin-top: 8px;
  padding-top: 28px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line);
}
.account-leave h2 { margin: 0 0 14px; font-size: 16px; font-weight: 600; }
.auth-form > .btn { width: 100%; }

.otp-block { display: grid; gap: 6px; }
.otp-block[hidden] { display: none; }
.otp-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
}
.otp-row .btn { min-height: 42px; white-space: nowrap; }
.otp-row.is-single { grid-template-columns: 1fr auto; }

.flash {
  margin: 16px 0 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}
.flash-ok { color: #166534; background: #f0fdf4; border-color: #bbf7d0; }
.flash-err { color: #b91c1c; background: #fef2f2; border-color: #fecaca; }

.gate { padding: 20px 0 72px; }

.gate p {
  margin: 0 auto;
  max-width: 32em;
  text-align: center;
  word-break: keep-all;
}

.gate .actions {
  justify-content: center;
  margin-top: 20px;
}

.faq-list { padding-bottom: 72px; }
.faq-item { border-top: 1px solid var(--line); padding: 14px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--fg-2); }
.faq-item p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }

.work-list { list-style: none; display: grid; gap: 0; padding-bottom: 72px; }
.work-item { padding: 18px 0; border-top: 1px solid var(--line); }
.work-item:last-child { border-bottom: 1px solid var(--line); }
.work-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 6px;
}
.work-item p { margin: 0; color: var(--muted); font-size: 14px; }

.work-wrap { padding: 96px 0; }
.hw-stage-boot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: rgba(244, 244, 245, 0.55);
  font-size: 13px;
  letter-spacing: 0.16em;
}
.page-portfolio .work-wrap h1 {
  margin: 0 0 12px;
  color: #f4f4f5;
}
.page-portfolio .work-wrap .note { color: #a1a1aa; }

.work-stage {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  overflow: hidden;
  background: #050505;
  color: #fafafa;
}

.work-stage-dots,
.work-stage-vignette,
.work-stage-spot,
.work-stage-core {
  position: absolute;
  pointer-events: none;
}

.work-stage-dots {
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1.15px);
  background-size: 13px 13px;
  mask-image: radial-gradient(ellipse 52% 58% at 50% 48%, transparent 42%, #000 100%);
  -webkit-mask-image: radial-gradient(ellipse 52% 58% at 50% 48%, transparent 42%, #000 100%);
  opacity: 0.55;
}

.work-stage-vignette {
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 65% at 50% 48%, transparent 30%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.5));
}

.work-stage-spot {
  z-index: 2;
  width: 480px;
  height: 480px;
  left: 50%;
  top: 48%;
  margin: -240px 0 0 -240px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 68%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.work-stage:hover .work-stage-spot { opacity: 1; }

.work-stage-core {
  z-index: 4;
  left: 50%;
  top: 48%;
  width: 108px;
  height: 108px;
  translate: -50% -50%;
}
.work-stage-core::before {
  content: "";
  position: absolute;
  inset: -34px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  animation: work-spin 36s linear infinite;
}
.work-stage-core::after {
  content: "";
  position: absolute;
  inset: -58px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.work-stage-core img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
  animation: work-breathe 7s ease-in-out infinite;
}
.work-stage.is-focus .work-stage-core {
  opacity: 0.28;
  transition: opacity 0.4s ease;
}

.work-constellation {
  position: absolute;
  inset: 0;
  z-index: 5;
  list-style: none;
}

.work-piece {
  position: absolute;
  width: 18%;
  min-width: 140px;
  z-index: 5;
  transition: opacity 0.45s ease, filter 0.45s ease;
}
.work-piece:nth-child(1) { left: 12%; top: 11%; width: 22%; max-width: 340px; }
.work-piece:nth-child(2) { left: 62%; top: 9%; width: 17%; max-width: 260px; }
.work-piece:nth-child(3) { left: 8%; top: 44%; width: 20%; max-width: 320px; }
.work-piece:nth-child(4) { left: 66%; top: 36%; width: 19%; max-width: 300px; }
.work-piece:nth-child(5) { left: 36%; top: 52%; width: 14%; max-width: 210px; }
.work-piece:nth-child(6) { left: 46%; top: 18%; width: 14%; max-width: 210px; }
.work-piece:nth-child(7) { left: 26%; top: 58%; width: 14%; max-width: 210px; }
.work-piece:nth-child(1) .work-piece-frame { rotate: -11deg; }
.work-piece:nth-child(2) .work-piece-frame { rotate: 8deg; }
.work-piece:nth-child(3) .work-piece-frame { rotate: -7deg; }
.work-piece:nth-child(4) .work-piece-frame { rotate: 10deg; }
.work-piece:nth-child(5) .work-piece-frame { rotate: -6deg; }
.work-piece:nth-child(6) .work-piece-frame { rotate: 5deg; }
.work-piece:nth-child(7) .work-piece-frame { rotate: -9deg; }
.work-piece-orbit {
  display: block;
  animation:
    work-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both,
    work-float 6.4s ease-in-out infinite;
}
.work-piece:nth-child(1) .work-piece-orbit { animation-delay: 0.04s, 0.94s; }
.work-piece:nth-child(2) .work-piece-orbit { animation-delay: 0.16s, 1.06s; }
.work-piece:nth-child(3) .work-piece-orbit { animation-delay: 0.28s, 1.18s; }
.work-piece:nth-child(4) .work-piece-orbit { animation-delay: 0.2s, 1.1s; }
.work-piece:nth-child(5) .work-piece-orbit { animation-delay: 0.36s, 1.26s; }

.work-piece-hit {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: center;
  cursor: pointer;
}

.work-piece-frame {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transition: scale 0.4s ease;
}
.work-piece-frame img,
.work-fallback {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.42));
  transition: filter 0.35s ease;
}

.work-fallback {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #f4f4f5;
}

.work-piece-label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e4e4e7;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.work-piece:hover,
.work-piece.is-on,
.work-piece:focus-within { z-index: 8; }
.work-piece:hover .work-piece-frame,
.work-piece.is-on .work-piece-frame,
.work-piece:focus-within .work-piece-frame {
  scale: 1.1;
}
.work-piece:hover .work-piece-frame img,
.work-piece.is-on .work-piece-frame img,
.work-piece:focus-within .work-piece-frame img {
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.55));
}
.work-piece:hover .work-piece-label,
.work-piece.is-on .work-piece-label,
.work-piece:focus-within .work-piece-label {
  opacity: 1;
  transform: none;
}

.work-stage.is-focus .work-piece {
  opacity: 0.22;
}
.work-stage.is-focus .work-piece.is-on,
.work-stage.is-focus .work-piece:hover,
.work-stage.is-focus .work-piece:focus-within {
  opacity: 1;
}

.work-hud {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px clamp(20px, 4vw, 48px) 28px;
  pointer-events: none;
}
.work-hud-idx,
.work-hud-name,
.work-hud-more {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.78);
}
.work-hud-idx { font-variant-numeric: tabular-nums; }
.work-hud-name {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #fff;
  text-align: center;
}
.work-hud-more {
  pointer-events: auto;
  justify-self: end;
  color: rgba(244, 244, 245, 0.78);
}
.work-hud-more:hover { color: #fff; }

@keyframes work-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
@keyframes work-in {
  from { opacity: 0; scale: 0.86; }
  to { opacity: 1; scale: 1; }
}
@keyframes work-spin {
  to { rotate: 360deg; }
}
@keyframes work-breathe {
  0%, 100% { scale: 1; filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45)); }
  50% { scale: 1.06; filter: drop-shadow(0 12px 32px rgba(255, 255, 255, 0.12)); }
}

@media (prefers-reduced-motion: reduce) {
  .work-piece-orbit,
  .work-stage-core img,
  .work-stage-core::before {
    animation: none;
  }
}

.work-tag {
  font-size: 12px;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  padding: 2px 8px;
  border-radius: 999px;
  word-break: keep-all;
}
.work-tag.is-private { color: var(--muted); border-color: var(--line); }
.news-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: #171717;
}
.news-pin svg {
  display: block;
  width: 16px;
  height: 16px;
}
.news-item-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.news-hero { padding-bottom: 20px; }
.news-hero h1 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}
.news-hero .news-pin { margin-top: 0.22em; }
.news-hero .news-pin svg { width: 22px; height: 22px; }
.news-meta {
  margin: 12px 0 0;
  font-size: 14px;
  color: #737373;
}
.news-article { padding: 8px 0 96px; }
.news-body { max-width: 38em; }
.news-body p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.85;
  color: #27272a;
  word-break: keep-all;
}
.news-body p:last-child { margin-bottom: 0; }

.legal-hero {
  padding: 64px 0;
  background: #f9fafb;
}

.legal-hero h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111827;
  line-height: 1.25;
}

.legal-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.legal-date svg {
  flex: none;
  color: #9ca3af;
}

.legal-index {
  max-width: 56rem;
  margin: 0 auto;
  padding: 64px 0 96px;
}

.legal-index section + section { margin-top: 48px; }

.legal-index h2 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}

.legal-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: inherit;
}

.legal-card:hover {
  border-color: #111827;
}

.legal-card:hover h3,
.legal-card:hover .legal-card-arrow {
  color: var(--accent);
}

.legal-card-main {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.legal-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
}

.legal-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.legal-card p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #6b7280;
}

.legal-card-arrow {
  flex: none;
  color: #9ca3af;
}

.legal-wrap {
  display: grid;
  gap: 48px;
  padding: 64px 0 96px;
}

.legal-toc {
  display: none;
}

.legal-toc-inner {
  position: relative;
}

.legal-toc p {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.legal-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid #e5e7eb;
}

.legal-toc a {
  display: block;
  padding: 8px 0 8px 16px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
}

.legal-toc a:hover { color: #111827; }

.legal-toc a.is-active {
  border-left-color: var(--accent);
  color: var(--accent);
  font-weight: 500;
}

.legal-intro {
  margin: 0 0 40px;
  color: #4b5563;
}

.legal-article {
  padding-bottom: 40px;
  scroll-margin-top: 80px;
}

.legal-article:last-child { padding-bottom: 0; }

.legal-article h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}

.legal-article h3 {
  margin: 20px 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.legal-article p,
.legal-article li {
  color: #4b5563;
  font-size: 15px;
}

.legal-article p { margin: 0 0 12px; }
.legal-article p:last-child { margin-bottom: 0; }

.legal-article ul {
  margin: 0 0 12px;
  padding-left: 1.2em;
}

.legal-article li { margin: 4px 0; }

@media (min-width: 1024px) {
  .legal-wrap {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 64px;
  }

  .legal-toc {
    display: block;
    position: sticky;
    top: 80px;
    align-self: start;
  }

  .legal-body { max-width: 48rem; }
}

.band { padding: 48px 0 56px; border-top: 1px solid var(--line); }

.product-hero {
  background: #f7f8fa;
  border-bottom: 1px solid #e5e7eb;
}

.product-hero-top { padding: 40px 0 28px; }
.product-hero.is-plain .product-hero-top { padding-bottom: 40px; }

.product-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  font-size: 13px;
  color: #737373;
}

.product-crumbs li {
  display: inline-flex;
  align-items: center;
}

.product-crumbs li:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: #a3a3a3;
}

.product-crumbs a:hover { color: #262626; }
.product-crumbs [aria-current="page"] { color: #404040; }

.product-hero h1 {
  margin: 24px 0 0;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #171717;
  word-break: keep-all;
}

.product-hero .lead {
  margin: 16px 0 0;
  max-width: 42em;
  color: #737373;
  font-size: 16px;
  word-break: keep-all;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.product-hero-actions .btn,
.product-price-more .btn {
  height: 44px;
  padding: 0 20px;
  border-radius: 6px;
}

.product-hero-actions .btn-fill {
  border-width: 0;
  background: #0a0a0a;
}

.product-hero-actions .btn-line {
  background: #fff;
}

.product-tabs {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-tabs::-webkit-scrollbar { display: none; }

.product-tabs button {
  padding: 0 0 12px;
  border-bottom: 2px solid transparent;
  color: #737373;
  font-size: 14px;
  white-space: nowrap;
}

.product-tabs button[aria-selected="true"] {
  border-bottom-color: #0a0a0a;
  color: #171717;
  font-weight: 600;
}

.product-body { padding: 48px 0 64px; background: #fff; }

.product-panel[hidden] { display: none; }

.product-panel > h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #171717;
  word-break: keep-all;
}

.product-lead {
  margin: 16px 0 0;
  max-width: 48em;
  color: #525252;
  word-break: keep-all;
}

.product-stats {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.product-stat {
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.product-stat-k {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #2563eb;
}

.product-stat-v {
  margin: 8px 0 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #171717;
}

.product-stat-c {
  margin: 4px 0 0;
  font-size: 12px;
  color: #737373;
}

.product-stat p:last-child {
  margin: 12px 0 0;
  font-size: 14px;
  color: #525252;
  word-break: keep-all;
}

.product-feats {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

.product-feat h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #171717;
}

.product-feat p {
  margin: 8px 0 0;
  color: #525252;
  word-break: keep-all;
}

.product-feat ul {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  list-style: none;
}

.product-feat li {
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
}

.product-price-layout {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

.product-price-side {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.product-price-side > h3 {
  margin: 0;
  padding: 12px 16px;
  background: #0a0a0a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.product-cat {
  display: grid;
  gap: 4px;
  padding: 12px;
}

.product-cat button {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-align: left;
  font-size: 14px;
}

.product-cat button:hover { background: #fafafa; }

.product-cat button.is-on {
  border-color: #3b82f6;
  background: #eff6ff;
  color: #1d4ed8;
}

.product-price-note {
  padding: 0 16px 16px;
}

.product-price-note-h {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  color: #737373;
}

.product-price-note p {
  margin: 0;
  font-size: 13px;
  color: #525252;
  word-break: keep-all;
}

.product-price-found {
  margin: 0 0 12px;
  font-size: 14px;
  color: #737373;
}

.product-plans { display: grid; gap: 8px; }

.product-plan {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.product-plan[hidden] { display: none; }

.product-plan-id p {
  margin: 0;
  font-weight: 600;
  color: #171717;
}

.product-plan-id span {
  font-size: 12px;
  color: #737373;
}

.product-plan-id .product-popular {
  display: inline;
  margin-left: 6px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  color: #ef4444;
  font-size: 12px;
  font-weight: 700;
  vertical-align: baseline;
}

.product-plan-specs {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px 16px;
  flex: 1;
  min-width: 0;
}

.product-plan-specs span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #a3a3a3;
}

.product-plan-specs strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #262626;
  word-break: keep-all;
}

.product-plan-price {
  font-size: 18px;
  font-weight: 700;
  color: #171717;
}

.product-plan-price span {
  margin-left: 2px;
  font-size: 12px;
  font-weight: 500;
  color: #737373;
}

.product-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  flex: none;
}

.product-select:hover { background: #1d4ed8; color: #fff; }

.product-price-empty {
  margin: 16px 0 0;
  padding: 24px;
  border: 1px dashed #e5e7eb;
  border-radius: 12px;
  text-align: center;
  color: #737373;
}

.product-price-more {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
}

.product-price-more h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.product-price-more p {
  margin: 8px 0 16px;
  font-size: 14px;
  color: #525252;
  word-break: keep-all;
}

@media (min-width: 640px) {
  .product-stats { grid-template-columns: 1fr 1fr; }
  .product-feat ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-plan-specs { grid-template-columns: 64px minmax(0, 1fr); }
}

@media (min-width: 768px) {
  .product-plan {
    flex-direction: row;
    align-items: center;
  }
  .product-plan-id { width: 128px; flex: none; }
  .product-plan-price { width: 112px; flex: none; text-align: right; }
}

@media (min-width: 1024px) {
  .product-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-price-layout { grid-template-columns: 260px minmax(0, 1fr); }
}

@media (min-width: 720px) {
  .prod-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .prod-grid:has(> :nth-child(4):last-child) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feat-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-list { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .ready-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  .ready-inner .actions {
    justify-content: flex-end;
    align-items: center;
    flex: none;
  }
}

@media (min-width: 800px) {
  .work-piece:nth-child(1) { max-width: 340px; }
}

@media (max-width: 799px) {
  .work-piece {
    min-width: 0;
    max-width: none;
  }
  .work-piece:nth-child(1) { left: 4%; top: 16%; width: 44%; }
  .work-piece:nth-child(2) { left: 52%; top: 14%; width: 42%; }
  .work-piece:nth-child(3) { left: 2%; top: 46%; width: 46%; }
  .work-piece:nth-child(4) { left: 52%; top: 44%; width: 44%; }
  .work-piece:nth-child(5) { left: 28%; top: 68%; width: 40%; }
  .work-stage-core {
    width: 72px;
    height: 72px;
  }
  .work-stage-core img {
    width: 72px;
    height: 72px;
  }
  .work-stage-core::before { inset: -22px; }
  .work-stage-core::after { inset: -38px; }
  .work-hud {
    padding: 16px 16px 22px;
    gap: 8px;
  }
  .work-hud-name { font-size: 11px; letter-spacing: 0.12em; }
}

@media (min-width: 900px) {
  .case-slide { grid-template-columns: 1fr 1fr; }
  .case-visual,
  .case-body { min-height: 400px; }
}

@media (min-width: 800px) {
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.15fr 1fr 1fr 1fr 1fr; }
}

@media (min-width: 860px) {
  .contact-grid:has(> :nth-child(2)) { grid-template-columns: 0.8fr 1.2fr; }
}

@media (max-width: 1023px) {
  .hero-copy { text-align: center; max-width: none; }
  .hero .actions { justify-content: center; }
}

@media (max-width: 720px) {
  .hero { min-height: 0; padding: 32px 0 64px; }
  .hero h1 { font-size: 36px; }
  .hero .lead { font-size: 16px; margin-bottom: 32px; }
  .logo-strip-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .logo-strip p {
    width: auto;
    border: 0;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  .logo-marquee { width: 100%; }
  .home-band,
  .feat-band,
  .cases-band,
  .ready-band { padding: 48px 0; }
  .case-body { padding: 24px; }
  .legal-hero { padding: 40px 0; }
  .legal-hero h1 { font-size: 28px; }
  .legal-index,
  .legal-wrap { padding: 40px 0 64px; }
}

@media (max-width: 560px) {
  .inquiry-search { grid-template-columns: 1fr 1fr; }
  .inquiry-search label { grid-column: 1 / -1; }
  .otp-row { grid-template-columns: 1fr 1fr; }
  .otp-row.is-single { grid-template-columns: 1fr auto; }
  .otp-row input { grid-column: 1 / -1; }
  .type-grid,
  .type-grid.is-2,
  .type-grid.is-3,
  .type-grid.is-4,
  .type-grid.is-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.dash-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.dash-card:hover { border-color: #9ca3af; }
.dash-card strong { font-size: 22px; font-weight: 650; color: var(--fg-2); }
.dash-card span { font-size: 13px; color: var(--muted); }

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 28px;
}

.dash-panel { min-width: 0; }
.page-quotes .dash-panel + .dash-panel { margin-top: 28px; }
.dash-chart { width: 100%; height: auto; display: block; }

.status-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.status-inline select {
  min-height: 36px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}

.status-inline .btn { height: 36px; padding: 0 12px; }

.quote-lines { display: grid; gap: 8px; margin: 0; padding: 0; border: 0; }
.quote-line {
  display: grid;
  grid-template-columns: 1fr 72px 120px;
  gap: 8px;
}

@media (max-width: 800px) {
  .dash-grid { grid-template-columns: 1fr; }
  .inquiry-search.admin-search { grid-template-columns: 1fr; }
  .quote-line { grid-template-columns: 1fr; }
}

.shop-page .product-hero .kicker {
  margin: 20px 0 0;
}

.shop-page .product-hero .kicker + h1 {
  margin-top: 8px;
}

.shop-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.shop-switch a {
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #525252;
  font-size: 13px;
  font-weight: 500;
}

.shop-switch a:hover {
  border-color: #a3a3a3;
  color: #171717;
}

.shop-switch a[aria-current="page"] {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

.shop-hub-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.shop-hub-card {
  display: grid;
  gap: 8px;
  padding: 22px 20px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.shop-hub-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.shop-hub-card strong {
  font-size: 18px;
  letter-spacing: -0.03em;
  color: #171717;
}

.shop-hub-card span {
  color: #525252;
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}

.shop-hub-card em {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: var(--accent);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.shop-hub-card:hover em { color: var(--accent-2); }

.shop-dont {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
}

.shop-dont h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.shop-dont ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  list-style: none;
}

.shop-dont li {
  font-size: 14px;
  color: #525252;
  word-break: keep-all;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 20px;
}

.shop-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-sort button {
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #525252;
  font-size: 13px;
  font-weight: 500;
}

.shop-sort button:hover {
  border-color: #a3a3a3;
  color: #171717;
}

.shop-sort button.is-on {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

.shop-toolbar .product-price-found { margin: 0; }

.shop-grid {
  display: grid;
  gap: 12px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.shop-card[hidden] { display: none; }

.shop-thumb {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 12px, transparent 12px 24px),
    #1c1c1f;
}

.shop-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-thumb span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.shop-sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  padding: 4px 8px;
  background: #dc2626;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.shop-thumb.tone-job { background-color: #111827; }
.shop-thumb.tone-inv { background-color: #1f2937; }
.shop-thumb.tone-hud { background-color: #0f172a; }
.shop-thumb.tone-phone { background-color: #172554; }
.shop-thumb.tone-house { background-color: #3f3f46; }
.shop-thumb.tone-law { background-color: #1e3a5f; }
.shop-thumb.tone-shop { background-color: #292524; }
.shop-thumb.tone-custom { background-color: #18181b; }
.shop-thumb.tone-mlo { background-color: #44403c; }
.shop-thumb.tone-outdoor { background-color: #365314; }
.shop-thumb.tone-hub { background-color: #3f3f46; }
.shop-thumb.tone-retail { background-color: #44403c; }
.shop-thumb.tone-instance { background-color: #1e293b; }
.shop-thumb.tone-opt { background-color: #27272a; }
.shop-thumb.tone-police { background-color: #1e3a8a; }
.shop-thumb.tone-fire { background-color: #7f1d1d; }
.shop-thumb.tone-clothes { background-color: #44403c; }
.shop-thumb.tone-ped { background-color: #3f3f46; }
.shop-thumb.tone-acc { background-color: #292524; }
.shop-thumb.tone-set { background-color: #171717; }
.shop-thumb.tone-fleet { background-color: #1e3a8a; }
.shop-thumb.tone-sedan { background-color: #334155; }
.shop-thumb.tone-truck { background-color: #44403c; }
.shop-thumb.tone-bike { background-color: #27272a; }
.shop-thumb.tone-special { background-color: #7f1d1d; }
.shop-thumb.tone-tune { background-color: #0f172a; }

.shop-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  flex: 1;
}

.shop-card-body h2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #171717;
}

.shop-card-body p {
  margin: 0;
  color: #525252;
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
  flex: 1;
}

.shop-price {
  display: grid;
  gap: 2px;
  margin-top: 8px;
}

.shop-price-was {
  color: #a3a3a3;
  font-size: 13px;
  text-decoration: line-through;
}

.shop-price strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #171717;
}

.shop-price-off {
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
}

.shop-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  margin-top: 12px;
  border-radius: 8px;
  background: #0a0a0a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.shop-buy:hover {
  background: #2563eb;
  color: #fff;
}

.admin-filter {
  display: flex;
  gap: 12px;
  margin: 0 0 16px;
}

.admin-filter select {
  min-width: 220px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
}

@media (min-width: 720px) {
  .shop-hub-grid { grid-template-columns: 1fr 1fr; }
  .shop-hub-grid:has(> :nth-child(3):last-child) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 640px) {
  .shop-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
