:root {
  --ink: #111111;
  --ink-soft: #333333;
  --sea: #222222;
  --sea-bright: #444444;
  --lime: #ffffff;
  --coral: #111111;
  --paper: #ffffff;
  --mist: #e8e8e8;
  --white: #ffffff;
  --line: rgba(0, 0, 0, 0.1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --font-display: "Bricolage Grotesque", "Pretendard", sans-serif;
  --font-body: "Pretendard", "IBM Plex Sans KR", sans-serif;
  --font-brand: "Archivo Black", "Bricolage Grotesque", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  min-height: 100vh;
  line-height: 1.55;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

@media (min-width: 1920px) {
  .container {
    width: min(1680px, calc(100% - 3rem));
  }
}

@media (min-width: 2560px) {
  .container {
    width: min(1680px, calc(100% - 4rem));
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
}

.header-top {
  border-bottom: 1px solid #f0f0f0;
}

.header-top-inner {
  display: flex;
  justify-content: flex-end;
  min-height: 32px;
  align-items: center;
}

.util-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  font-size: 12px;
  color: #222;
}

.util-nav a,
.util-logout button {
  color: #222;
  text-decoration: none;
  opacity: 0.78;
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.util-nav a:hover,
.util-logout button:hover {
  opacity: 1;
}

.util-logout {
  display: inline;
  margin: 0;
}

.util-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 3px;
  border-radius: 50%;
  background: #111111;
  vertical-align: super;
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

/* KREAM-like: heavy italic black wordmark */
.brand-wordmark {
  font-family: var(--font-brand);
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #222;
  -webkit-font-smoothing: antialiased;
}

.brand-apos {
  letter-spacing: -0.05em;
}

.brand-mark {
  display: none;
}

.header-main-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.gnb {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.gnb a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #222;
  text-decoration: none;
  line-height: 1;
}

.gnb a:hover,
.gnb a.is-active {
  color: #000;
}

.gnb-dot {
  position: absolute;
  top: -2px;
  right: -7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111111;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #222;
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
}

.icon-btn:hover {
  background: #f5f5f5;
}

.header-tabs {
  border-top: 1px solid #f2f2f2;
}

.header-tabs-inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: 44px;
  overflow-x: auto;
  scrollbar-width: none;
}

.header-tabs-inner::-webkit-scrollbar {
  display: none;
}

.header-tabs a {
  position: relative;
  flex-shrink: 0;
  padding: 12px 0 11px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
}

.header-tabs a.is-active {
  font-weight: 700;
}

.header-tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #222;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #eee;
  background: #fff;
  padding: 0.4rem 0 0.8rem;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  color: #222;
  text-decoration: none;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.nav,
.nav-links,
.nav-actions {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #111;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.btn-accent {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-sea {
  background: #111;
  color: #fff;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.08);
  color: #333;
}

.badge-coral {
  background: #111;
  color: #fff;
}

.badge-sea {
  background: rgba(0, 0, 0, 0.08);
  color: #111;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(44vh, 380px);
  display: grid;
  align-items: end;
  padding: 2.2rem 0 1.75rem;
  color: white;
  background: #111111;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.62) 10%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 50%);
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-brand {
  margin: 0 0 0.75rem;
  animation: riseIn 0.8s ease both;
}

.hero-brand .brand-wordmark {
  font-size: clamp(2.8rem, 7.5vw, 4.25rem);
  letter-spacing: -0.04em;
  color: #fff;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  animation: riseIn 0.9s ease 0.08s both;
}

.hero p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  opacity: 0.9;
  max-width: 34rem;
  animation: riseIn 1s ease 0.14s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  animation: riseIn 1.05s ease 0.2s both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-orb {
  display: none;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

.section {
  padding: 4rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  opacity: 0.8;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card .thumb {
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  background-color: #111111;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0.9rem;
  color: white;
  font-weight: 700;
  position: relative;
}

.service-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%);
  pointer-events: none;
}

.service-card .thumb .badge {
  position: relative;
  z-index: 1;
}

.market-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  padding: 0.35rem 0 1rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 0.25rem;
}

.market-head-text {
  min-width: 0;
  flex: 1;
}

.market-head h1,
.market-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
  color: #111;
  font-weight: 750;
}

.market-head p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 40rem;
}

.market-head--page {
  margin: 1.75rem 0 1.25rem;
  padding-bottom: 1.15rem;
}

.market-head--page h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
}

.promo-banner,
.page-hero-banner {
  display: none;
}

.market-empty {
  margin-top: 1.2rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.market-empty h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.detail-cover {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.6rem 0 2.4rem;
  flex-wrap: wrap;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-nav,
.pagination-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pagination-nav {
  min-width: 3.2rem;
  padding: 0 0.85rem;
}

.pagination-page:hover,
.pagination-nav:not(.is-disabled):hover {
  background: #fff;
  border-color: var(--sea);
  color: var(--sea);
}

.pagination-page.is-active {
  background: var(--sea);
  border-color: var(--sea);
  color: #fff;
}

.pagination-nav.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pagination-status {
  font-size: 0.92rem;
  opacity: 0.75;
  min-width: 9rem;
  text-align: center;
}

.channel-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.channel-card.is-clickable {
  cursor: pointer;
}

.channel-card.is-clickable:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 2px;
}

.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.channel-avatar,
.channel-card .thumb {
  width: 56px;
  height: 56px;
  min-height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.channel-card .thumb {
  margin: 0;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
}

.channel-card .thumb::after {
  display: none;
}

.channel-card .thumb .badge {
  display: none;
}

.channel-body {
  padding: 0;
  min-width: 0;
}

.channel-body h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.channel-stats {
  grid-template-columns: repeat(2, 1fr);
}

.channel-card-media {
  display: block;
  line-height: 0;
}

.channel-card-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.channel-card-title a {
  color: inherit;
  text-decoration: none;
}

.channel-card-title a:hover {
  color: var(--sea);
}

.creator-platform-widget {
  margin-top: 0.35rem;
}

.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

/* 카드에서 플랫폼 탭 영역을 항상 2줄 높이로 고정 */
.channel-card .platform-tabs,
.content-card .platform-tabs {
  min-height: calc(2 * (0.84rem + 1.35em) + 0.45rem);
  align-content: flex-start;
  margin-bottom: 0.55rem;
}

.platform-tabs-single .platform-tab {
  cursor: default;
}

.platform-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.platform-tab:hover {
  border-color: rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.08);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.platform-tab.is-active:hover {
  border-color: var(--sea);
  background: rgba(0, 0, 0, 0.16);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.platform-tabs-single .platform-tab:hover {
  transform: none;
  box-shadow: none;
}

.platform-tab img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.platform-tab.is-active {
  border-color: var(--sea);
  background: rgba(0, 0, 0, 0.1);
  color: var(--ink);
  font-weight: 600;
}

.platform-panel {
  display: none;
}

.platform-panel.is-active {
  display: block;
}

.content-detail-media {
  margin-bottom: 1.4rem;
  border-radius: 12px;
  overflow: hidden;
}  margin: 0 0 1.35rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.ad-intro-block h2 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}

.ad-intro-block p {
  margin: 0;
  line-height: 1.65;
  color: var(--ink-soft);
}

.channel-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.channel-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.channel-tab img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.channel-tab.is-active {
  border-color: var(--sea);
  background: rgba(0, 0, 0, 0.12);
  color: var(--ink);
  font-weight: 700;
}

.channel-tab-panel {
  display: none;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.channel-tab-panel.is-active {
  display: block;
}

.channel-intro-box {
  margin: 0 0 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.channel-intro-box h4,
.channel-ref-block h4 {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
}

.channel-intro-box p {
  margin: 0;
  line-height: 1.6;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.channel-ref-block {
  margin-top: 1.1rem;
}

.channel-ref-block .reference-grid {
  margin: 0.55rem 0 0;
}

.platform-section {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.platform-section-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.platform-section-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.platform-section-title {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.platform-section-link {
  margin-left: auto;
}

.platform-section-head .platform-account-name {
  margin: 0.1rem 0 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.platform-section .audience-line {
  margin-bottom: 0.75rem;
}

.channel-avatar-lg {
  width: 72px;
  height: 72px;
  min-height: 72px;
}

.creator-detail-identity {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
  margin: 0.75rem 0 1.5rem;
}

.reference-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.reference-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.reference-thumb {
  aspect-ratio: 16 / 9;
  background: #e5e5e5;
  overflow: hidden;
}

.reference-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reference-thumb-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e5e5, #f5f5f5);
}

.reference-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0.7rem 0.75rem;
}

.reference-body strong {
  font-size: 0.86rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reference-body span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.platform-account-name {
  margin: 0 0 0.25rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.platform-summary {
  margin: 0 0 0.45rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.audience-line {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .channel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .channel-card {
    grid-template-columns: 56px 1fr;
    padding: 0.85rem;
  }
  .channel-avatar,
  .channel-card .thumb {
    width: 48px;
    height: 48px;
    min-height: 48px;
  }
}

.campaign-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.content-card.is-clickable {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.content-card.is-clickable:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 2px;
}

.content-card-title {
  margin: 0 0 0.55rem;
}

.content-card-tabs {
  margin-top: 0.15rem;
}

.campaign-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.campaign-media {
  position: relative;
  width: 100%;
}

.campaign-product {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #111111;
}

.campaign-brand-badge {
  position: absolute;
  left: 0.85rem;
  bottom: -1.1rem;
  width: 56px;
  height: 56px;
  border: 3px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #111111;
  flex-shrink: 0;
}

.brand-logo-fallback {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #222222, #111111);
}

.campaign-body {
  min-width: 0;
  padding: 1.6rem 1rem 1rem;
}

.campaign-body h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: 1.02rem;
}

@media (max-width: 640px) {
  .campaign-brand-badge,
  .brand-logo {
    width: 48px;
    height: 48px;
  }
  .campaign-body {
    padding: 1.4rem 0.85rem 0.85rem;
  }
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.meta-name-row {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.meta-name {
  font-weight: 600;
  color: var(--ink);
}

.title-with-platforms {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.platform-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  flex-shrink: 0;
}

.platform-icon {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  display: block;
}

.price {
  margin-top: 0.7rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.how {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.how-item {
  padding: 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.how-item .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sea);
  margin-bottom: 0.4rem;
}

.how-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.how-item p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.8;
}

.panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.guideline-list {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
  color: #333;
  line-height: 1.65;
}

.guideline-list li {
  margin-bottom: 0.45rem;
}

.guideline-list li:last-child {
  margin-bottom: 0;
}

.page-title {
  margin: 2rem 0 1.2rem;
}

.page-title h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.04em;
}

.page-title p {
  margin: 0.4rem 0 0;
  opacity: 0.75;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.filters-platform {
  margin-bottom: 1.4rem;
}

.filter-group-label {
  width: 100%;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: -0.15rem;
}

.chip-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.platform-icon-sm {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  display: block;
}

.selected-category-head {
  margin: 0 0 1rem;
}

.selected-category-head h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

.category-block {
  margin-bottom: 2.4rem;
}

.category-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.9rem;
}

.category-block-head h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

.chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
}

.chip.active {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}

.search-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.search-bar input {
  flex: 1;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="date"],
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: white;
  margin-bottom: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.auth-wrap {
  max-width: 480px;
  margin: 2.5rem auto 4rem;
}

.messages {
  width: min(1120px, calc(100% - 2rem));
  margin: 1rem auto 0;
}

.msg {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  background: #f0f0f0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #111;
}

.msg.error,
.msg-error {
  background: #ececec;
  border-color: #111;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 1.2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.detail-side-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.demo-accounts {
  margin-top: 1.1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
}

.demo-accounts strong {
  display: block;
  margin-bottom: 0.4rem;
}

.demo-accounts p {
  margin: 0.2rem 0;
  color: var(--ink-soft);
}

.demo-accounts code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.86rem;
  color: var(--ink);
}

.ad-inquiry-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 0.9rem 1rem;
  font-size: 0.98rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.creator-chat {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  width: min(440px, calc(100vw - 1.5rem));
}

.creator-chat-panel {
  display: flex;
  flex-direction: column;
  height: min(620px, calc(100vh - 2rem));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.creator-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.06);
}

.creator-chat-identity {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.creator-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.creator-chat-identity strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.2;
}

.creator-chat-identity span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

.creator-chat-response-time {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem !important;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  color: var(--sea) !important;
  font-size: 0.75rem !important;
  font-weight: 600;
  width: fit-content;
}

.creator-chat-response-time em {
  font-style: normal;
  font-weight: 800;
}

.creator-chat-close {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 0.15rem 0.35rem;
}

.creator-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: linear-gradient(180deg, rgba(245, 245, 245, 0.9), rgba(255, 255, 255, 0.95));
}

.creator-chat-msg {
  max-width: 85%;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.creator-chat-msg p {
  margin: 0;
}

.creator-chat-msg p + p {
  margin-top: 0.35rem;
}

.creator-chat-msg.is-agent {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
}

.creator-chat-msg.is-user {
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.creator-chat-compose {
  display: flex;
  gap: 0.45rem;
  padding: 0.75rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.creator-chat-compose input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font: inherit;
}

.chat-placeholder {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.chat-placeholder-copy strong {
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-display);
  margin-bottom: 0.45rem;
}

.chat-placeholder-copy p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
}

.chat-placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

@media (max-width: 640px) {
  .creator-chat {
    right: 0.65rem;
    bottom: 0.65rem;
    width: calc(100vw - 1.3rem);
  }
}

.ad-commerce {
  margin: 0;
}

.ad-commerce-title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.ad-commerce-lead {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.ad-product-groups {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ad-product-group {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.75rem 0.8rem;
}

.ad-product-group-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.ad-product-group-head img {
  width: 18px;
  height: 18px;
}

.ad-product-group-head strong {
  font-size: 0.95rem;
}

.ad-product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ad-product-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.4rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
  min-height: 2.2rem;
}

.ad-product-item:hover {
  background: rgba(0, 0, 0, 0.06);
}

.ad-product-item > input[type="checkbox"],
.ad-product-item .ad-product-check {
  margin: 0;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--sea);
  align-self: center;
}

.ad-product-meta {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
}

.ad-product-name {
  font-size: 0.9rem;
  line-height: 1.2;
}

.ad-product-price {
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2;
}

.ad-packages {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ad-packages-title {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
}

.ad-package {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  background: rgba(255, 255, 255, 0.45);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ad-package--static {
  cursor: default;
}

.ad-package:not(.ad-package--static):hover {
  border-color: rgba(0, 0, 0, 0.45);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.ad-package.is-active {
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.05);
}

.ad-package.is-applied {
  border-style: solid;
  border-color: var(--sea);
  background: rgba(0, 0, 0, 0.1);
}

.ad-package.is-applied .ad-package-status {
  color: var(--sea);
  font-weight: 600;
}

.ad-package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.ad-package-top-right {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.ad-package-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.ad-package-action {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.3;
}

.ad-package-action:hover {
  border-color: #111;
  color: #111;
}

.ad-package-action.is-danger:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

.ad-package p {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.ad-package-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sea);
  white-space: nowrap;
}

.ad-package-status {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.ad-package.is-active .ad-package-status {
  color: var(--ink-soft);
}

.ad-package.is-applied .ad-package-status {
  color: var(--sea);
  font-weight: 600;
}

.campaign-proposal {
  margin: 1.1rem 0 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.campaign-proposal-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.campaign-proposal-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.campaign-message-shell {
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.92)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 10px,
      rgba(0, 0, 0, 0.012) 10px,
      rgba(0, 0, 0, 0.012) 11px
    );
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.campaign-message-shell:focus-within {
  border-color: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.campaign-message-input,
textarea.campaign-message-input {
  width: 100%;
  margin: 0 !important;
  margin-bottom: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  resize: vertical;
  min-height: 7.5rem;
  padding: 0.9rem 0.95rem 0.55rem !important;
  font: inherit;
  font-size: 0.92rem !important;
  line-height: 1.55;
  color: var(--ink);
}

.campaign-message-input::placeholder {
  color: #9a9a9a;
}

.campaign-message-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0.95rem 0.65rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.campaign-file-drop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  min-height: 7.25rem;
  padding: 1.1rem 1rem;
  border: 1.5px dashed rgba(0, 0, 0, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.campaign-file-drop:hover,
.campaign-file-drop.is-dragover {
  border-color: #111;
  background: #fff;
  transform: translateY(-1px);
}

.campaign-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.campaign-file-drop-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.2rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.campaign-file-drop strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.campaign-file-drop > span:last-child {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.campaign-file-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.campaign-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.campaign-file-item-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.campaign-file-item-meta strong {
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.campaign-file-item-meta span {
  font-size: 0.74rem;
  color: var(--ink-soft);
}

.campaign-file-remove {
  flex-shrink: 0;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
}

.campaign-file-remove:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

.ad-summary {
  margin: 1rem 0;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.08);
}

.ad-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.ad-summary-row.is-discount {
  color: var(--sea);
}

.ad-summary-row.is-total {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1.05rem;
}

.ad-summary-row.is-total strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.ad-summary-hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.ad-commerce-note {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}

.ad-commerce-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.ad-commerce-actions .ad-inquiry-btn {
  margin: 0;
}

#ad-propose-btn:disabled,
#ad-propose-btn.is-disabled,
#creator-chat-open:disabled,
#creator-chat-open.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ad-product-price--input {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
}

.ad-price-input,
input.ad-price-input[type="text"] {
  width: 6.5rem !important;
  max-width: 6.5rem;
  margin: 0 !important;
  margin-bottom: 0 !important;
  padding: 0.15rem 0.05rem !important;
  border: 0 !important;
  border-bottom: 1px solid #cfcfcf !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  font: inherit;
  font-size: 0.88rem !important;
  font-weight: 600;
  color: #111;
  text-align: right;
  line-height: 1.2;
  -webkit-appearance: none;
  appearance: none;
}

.ad-price-input:focus,
input.ad-price-input[type="text"]:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
  border-bottom: 1px solid #111 !important;
}

.ad-price-input::placeholder {
  color: #bbb;
  font-weight: 500;
}

.ad-packages-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
}

.ad-packages-head .ad-packages-title {
  margin: 0;
}

.ad-packages-empty {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  color: #777;
  line-height: 1.45;
}

.ad-package-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.commerce-modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(440px, calc(100vw - 2rem));
}

.commerce-modal::backdrop {
  background: rgba(0, 0, 0, 0.45);
}

.commerce-modal-card {
  margin: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.commerce-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.commerce-modal-head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.commerce-modal-close {
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #444;
}

.commerce-modal-lead {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: #666;
}

.commerce-modal-selected {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
}

.commerce-modal-selected li {
  padding: 0;
}

.commerce-modal-selected li + li {
  border-top: 1px solid #eee;
}

.commerce-bundle-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.1rem;
  cursor: pointer;
  font-weight: 500;
}

.commerce-bundle-item input {
  width: auto !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  accent-color: #111;
  flex-shrink: 0;
}

.commerce-bundle-meta {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.88rem;
}

.commerce-bundle-meta strong {
  font-weight: 700;
  white-space: nowrap;
}

.commerce-field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
}

.commerce-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-weight: 600;
}

.commerce-field-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.commerce-field-row input {
  flex: 1;
  text-align: right;
}

.commerce-modal-hint {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: #777;
}

.commerce-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.stat {
  padding: 0.9rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.08);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.stat-rate {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sea);
  font-family: var(--font-body, inherit);
  letter-spacing: 0;
}

.stat span {
  font-size: 0.82rem;
  opacity: 0.7;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  text-align: left;
  padding: 0.75rem 0.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  vertical-align: top;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 2.5rem;
  margin-top: 2rem;
  color: #666;
  font-size: 0.86rem;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 1.5rem 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #eee;
}

.footer-col strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #111;
  font-size: 0.92rem;
}

.footer-col p {
  margin: 0 0 0.4rem;
  line-height: 1.5;
}

.footer-col a:hover {
  color: #111;
  text-decoration: underline;
}

.footer-lead {
  margin: 0 0 1rem;
  max-width: 28rem;
  color: #555;
  line-height: 1.55;
}

.footer-support p {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  color: #777;
}

.footer-support strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #111;
  font-size: 0.88rem;
}

.footer-company {
  padding-top: 1.35rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: #888;
}

.footer-company p {
  margin: 0;
}

.footer-company strong {
  color: #333;
  font-weight: 700;
}

.footer-biz-link {
  margin-left: 0.35rem;
  color: #555;
  text-decoration: underline;
}

.footer-copy {
  margin-top: 0.75rem !important;
  color: #999;
  letter-spacing: 0.02em;
}

.notif-dot {
  display: inline-grid;
  place-items: center;
  min-width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  margin-left: 0.2rem;
}

.empty {
  padding: 2.5rem;
  text-align: center;
  opacity: 0.7;
}

.role-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.role-choice label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font-weight: 600;
  cursor: pointer;
}

@media (min-width: 1920px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .channel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 2560px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .channel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .grid,
  .how {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-layout,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .gnb {
    display: none;
  }
  .util-nav a:nth-child(n+3) {
    display: none;
  }
}

@media (max-width: 640px) {
  .grid,
  .how,
  .role-choice {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 1.6rem 0 1.3rem;
  }
  .brand-wordmark {
    font-size: 24px;
  }
  .header-tabs-inner {
    gap: 1.15rem;
  }
}


.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero .btn-accent {
  background: #fff;
  color: #111;
  border-color: #fff;
}
