:root {
  --sp-bg: #0b0c0e;
  --sp-panel: #151619;
  --sp-paper: #f2efe7;
  --sp-paper-strong: #ffffff;
  --sp-ink: #151619;
  --sp-muted: #77736c;
  --sp-muted-light: #b8b3aa;
  --sp-line-dark: #35363a;
  --sp-line-light: #c9c4ba;
  --sp-accent: #d85f2f;
  --sp-accent-dark: #a83e17;
  --sp-focus: #77a8ff;
  --sp-overlay: rgba(5, 6, 8, 0.58);
  --sp-overlay-strong: rgba(5, 6, 8, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

[hidden] {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.c6-body {
  background: var(--sp-bg);
  color: var(--sp-paper);
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

.c6-body a {
  color: inherit;
  text-decoration: none;
}

.c6-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--sp-paper);
  color: var(--sp-ink) !important;
  transform: translateY(-160%);
}

.c6-skip:focus {
  transform: translateY(0);
}

.c6-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  border-bottom: 1px solid var(--sp-line-dark);
  background: var(--sp-bg);
}

.c6-header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.c6-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.c6-brand-mark {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 2px solid var(--sp-accent);
  border-radius: 50%;
}

.c6-brand-mark span {
  width: 7px;
  height: 7px;
  border: 2px solid var(--sp-accent);
  border-radius: 50%;
}

.c6-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.c6-nav a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: var(--sp-muted-light);
  font-size: 13px;
  font-weight: 600;
}

.c6-nav a:hover,
.c6-nav a:focus-visible {
  color: var(--sp-paper);
}

.c6-nav .c6-compare {
  min-width: auto;
  padding: 0 15px;
  border: 1px solid var(--sp-line-dark);
  color: var(--sp-paper);
}

.c6-menu-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sp-line-dark);
  border-radius: 2px;
  background: var(--sp-panel);
  color: var(--sp-paper);
  cursor: pointer;
}

.c6-menu-button svg,
.c6-button svg,
.c6-text-link svg,
.c6-story-action svg,
.c6-archive-item svg,
.c6-email-row svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.c6-hero {
  position: relative;
  min-height: calc(100svh - 92px);
  overflow: hidden;
  border-bottom: 1px solid var(--sp-line-dark);
}

.c6-hero-image,
.c6-hero-overlay {
  position: absolute;
  inset: 0;
}

.c6-hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.c6-hero-overlay {
  background: var(--sp-overlay);
}

.c6-hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 92px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 92px;
  padding-bottom: 28px;
}

.c6-hero-copy {
  max-width: 820px;
  padding-bottom: 58px;
}

.c6-kicker {
  margin: 0 0 18px;
  color: var(--sp-accent);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.c6-kicker-dark {
  color: var(--sp-accent-dark);
}

.c6-hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
  word-break: keep-all;
  text-wrap: balance;
}

.c6-hero-copy > p:not(.c6-kicker) {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--sp-paper);
  font-size: 17px;
  line-height: 1.85;
  word-break: keep-all;
}

.c6-hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.c6-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.c6-button-accent {
  background: var(--sp-accent);
  color: var(--sp-paper-strong) !important;
}

.c6-button-accent:hover,
.c6-button-accent:focus-visible {
  background: var(--sp-accent-dark);
}

.c6-button-dark {
  background: var(--sp-ink);
  color: var(--sp-paper-strong) !important;
}

.c6-text-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--sp-paper);
  font-size: 14px;
  font-weight: 700;
}

.c6-hero-folio {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--sp-muted-light);
  border-bottom: 1px solid var(--sp-muted-light);
  background: var(--sp-overlay-strong);
}

.c6-hero-folio div {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 24px;
  border-right: 1px solid var(--sp-muted-light);
}

.c6-hero-folio div:last-child {
  border-right: 0;
}

.c6-hero-folio dt {
  color: var(--sp-accent);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.c6-hero-folio dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.c6-feature,
.c6-archive,
.c6-community {
  background: var(--sp-paper);
  color: var(--sp-ink);
}

.c6-feature {
  padding: 116px 0 104px;
}

.c6-section-lead {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  gap: 80px;
  align-items: end;
  padding-bottom: 70px;
}

.c6-section-lead .c6-kicker {
  grid-column: 1 / -1;
  margin-bottom: -52px;
}

.c6-section-lead h2,
.c6-community h2,
.c6-subscribe h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0;
  word-break: keep-all;
}

.c6-section-lead > p:last-child,
.c6-community-grid > div > p:last-child,
.c6-subscribe-grid > div > p:last-child {
  margin: 0;
  color: var(--sp-muted);
  line-height: 1.9;
  word-break: keep-all;
}

.c6-feature-story {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  align-items: stretch;
  border-top: 1px solid var(--sp-ink);
  border-bottom: 1px solid var(--sp-ink);
}

.c6-feature-story figure {
  margin: 0;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.c6-feature-story figure img {
  height: 100%;
  object-fit: cover;
}

.c6-feature-story figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 11px 14px;
  background: var(--sp-overlay-strong);
  color: var(--sp-paper);
  font-size: 11px;
}

.c6-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 0 52px 52px;
  border-left: 1px solid var(--sp-ink);
}

.c6-story-meta {
  display: flex;
  gap: 10px;
  color: var(--sp-accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.c6-story-copy h3 {
  margin: 26px 0 0;
  font-family: "Noto Serif KR", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  word-break: keep-all;
}

.c6-story-copy p {
  margin: 24px 0 0;
  color: var(--sp-muted);
  line-height: 1.9;
  word-break: keep-all;
}

.c6-story-action {
  min-height: 48px;
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  border-bottom: 1px solid var(--sp-ink);
  font-size: 14px;
  font-weight: 700;
}

.c6-feature-story:hover .c6-story-action svg,
.c6-feature-story:focus-visible .c6-story-action svg {
  transform: translateX(4px);
}

.c6-archive {
  padding: 104px 0 116px;
  border-top: 1px solid var(--sp-line-light);
}

.c6-archive-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}

.c6-archive-head h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.c6-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.c6-filters button {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--sp-line-light);
  border-radius: 2px;
  background: transparent;
  color: var(--sp-muted);
  font-size: 13px;
  cursor: pointer;
}

.c6-filters button.is-active,
.c6-filters button:hover,
.c6-filters button:focus-visible {
  border-color: var(--sp-ink);
  background: var(--sp-ink);
  color: var(--sp-paper-strong);
}

.c6-archive-list {
  border-top: 1px solid var(--sp-ink);
}

.c6-archive-item {
  min-height: 142px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 100px 44px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--sp-line-light);
}

.c6-archive-item:hover,
.c6-archive-item:focus-visible {
  background: var(--sp-paper-strong);
}

.c6-archive-category,
.c6-archive-date {
  color: var(--sp-accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.c6-archive-date {
  color: var(--sp-muted);
  text-align: right;
}

.c6-archive-item h3 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  word-break: keep-all;
}

.c6-archive-item p {
  margin: 8px 0 0;
  color: var(--sp-muted);
  font-size: 14px;
}

.c6-archive-item svg {
  justify-self: end;
}

.c6-filter-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--sp-muted);
  font-size: 13px;
}

.c6-listening {
  padding: 116px 0;
  background: var(--sp-bg);
}

.c6-listening-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  align-items: stretch;
  gap: 70px;
}

.c6-listening figure {
  min-height: 700px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.c6-listening figure img {
  height: 100%;
  object-fit: cover;
}

.c6-listening figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px 16px;
  background: var(--sp-overlay-strong);
  color: var(--sp-muted-light);
  font-size: 11px;
}

.c6-listening-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c6-listening-copy h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  word-break: keep-all;
}

.c6-listening-copy > p:not(.c6-kicker) {
  margin: 26px 0 0;
  color: var(--sp-muted-light);
  line-height: 1.9;
  word-break: keep-all;
}

.c6-listening-copy dl {
  margin: 42px 0 0;
  border-top: 1px solid var(--sp-line-dark);
}

.c6-listening-copy dl > div {
  min-height: 92px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--sp-line-dark);
}

.c6-listening-copy dt {
  color: var(--sp-accent);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.c6-listening-copy dd {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c6-listening-copy dd strong {
  font-family: "Noto Serif KR", serif;
  font-size: 19px;
  font-weight: 600;
}

.c6-listening-copy dd span {
  color: var(--sp-muted-light);
  font-size: 13px;
}

.c6-community {
  padding: 116px 0;
}

.c6-community-grid {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  gap: 90px;
}

.c6-comment-form {
  padding-top: 8px;
  border-top: 1px solid var(--sp-ink);
}

.c6-comment-form label,
.c6-subscribe form label {
  display: block;
  margin: 18px 0 10px;
  font-size: 13px;
  font-weight: 700;
}

.c6-comment-form textarea,
.c6-subscribe input {
  width: 100%;
  border: 1px solid var(--sp-line-light);
  border-radius: 2px;
  background: var(--sp-paper-strong);
  color: var(--sp-ink);
  outline: 0;
}

.c6-comment-form textarea {
  min-height: 154px;
  padding: 16px;
  resize: vertical;
}

.c6-comment-form textarea:focus,
.c6-subscribe input:focus {
  border-color: var(--sp-focus);
  box-shadow: 0 0 0 2px var(--sp-focus);
}

.c6-comment-form > div {
  min-height: 64px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.c6-comment-form > div p {
  margin: 0;
  color: var(--sp-muted);
  font-size: 13px;
}

.c6-subscribe {
  padding: 96px 0;
  border-top: 1px solid var(--sp-line-dark);
  background: var(--sp-panel);
}

.c6-subscribe-grid {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 90px;
}

.c6-subscribe h2 {
  font-size: 44px;
}

.c6-subscribe-grid > div > p:last-child {
  margin-top: 20px;
  color: var(--sp-muted-light);
}

.c6-subscribe form label {
  color: var(--sp-muted-light);
}

.c6-email-row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.c6-subscribe input {
  min-height: 58px;
  padding: 0 16px;
  border-color: var(--sp-line-dark);
  border-right: 0;
  border-radius: 2px 0 0 2px;
  background: var(--sp-bg);
  color: var(--sp-paper);
}

.c6-email-row button {
  min-width: 152px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--sp-accent);
  border-radius: 0 2px 2px 0;
  background: var(--sp-accent);
  color: var(--sp-paper-strong);
  font-weight: 700;
  cursor: pointer;
}

.c6-form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--sp-muted-light);
  font-size: 13px;
}

.c6-footer {
  padding: 30px 0;
  border-top: 1px solid var(--sp-line-dark);
  background: var(--sp-bg);
  color: var(--sp-muted-light);
  font-size: 11px;
}

.c6-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.c6-body :focus-visible {
  outline: 2px solid var(--sp-focus);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .c6-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 28px 26px;
    border-bottom: 1px solid var(--sp-line-dark);
    background: var(--sp-bg);
  }

  .c6-nav.is-open {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .c6-nav a {
    justify-content: center;
    border: 1px solid var(--sp-line-dark);
  }

  .c6-menu-button {
    display: inline-flex;
  }

  .c6-hero h1 {
    font-size: 58px;
  }

  .c6-section-lead,
  .c6-feature-story,
  .c6-listening-grid,
  .c6-community-grid,
  .c6-subscribe-grid {
    gap: 48px;
  }

  .c6-section-lead h2,
  .c6-community h2 {
    font-size: 44px;
  }

  .c6-story-copy {
    padding-left: 36px;
  }

  .c6-story-copy h3 {
    font-size: 30px;
  }

  .c6-listening-copy h2 {
    font-size: 40px;
  }

  .c6-archive-item {
    grid-template-columns: 110px minmax(0, 1fr) 44px;
  }

  .c6-archive-date {
    display: none;
  }
}

@media (max-width: 760px) {
  .c6-header,
  .c6-header-inner {
    min-height: 64px;
  }

  .c6-nav {
    top: 64px;
  }

  .c6-nav.is-open {
    grid-template-columns: 1fr 1fr;
  }

  .c6-hero,
  .c6-hero-inner {
    min-height: calc(100svh - 84px);
  }

  .c6-hero-inner {
    padding-top: 68px;
    padding-bottom: 20px;
  }

  .c6-hero-copy {
    padding-bottom: 36px;
  }

  .c6-hero h1 {
    font-size: 43px;
    line-height: 1.25;
  }

  .c6-hero-copy > p:not(.c6-kicker) {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
  }

  .c6-hero-actions {
    margin-top: 26px;
    gap: 14px;
  }

  .c6-button,
  .c6-text-link {
    min-height: 48px;
  }

  .c6-hero-folio {
    grid-template-columns: 1fr;
  }

  .c6-hero-folio div {
    min-height: 52px;
    padding: 8px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--sp-muted-light);
  }

  .c6-hero-folio div:last-child {
    border-bottom: 0;
  }

  .c6-feature,
  .c6-archive,
  .c6-listening,
  .c6-community {
    padding: 78px 0;
  }

  .c6-section-lead,
  .c6-feature-story,
  .c6-listening-grid,
  .c6-community-grid,
  .c6-subscribe-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .c6-section-lead {
    padding-bottom: 48px;
  }

  .c6-section-lead .c6-kicker {
    grid-column: auto;
    margin-bottom: -20px;
  }

  .c6-section-lead h2,
  .c6-community h2,
  .c6-subscribe h2 {
    font-size: 36px;
  }

  .c6-feature-story figure {
    min-height: 380px;
  }

  .c6-story-copy {
    padding: 32px 0;
    border-left: 0;
    border-top: 1px solid var(--sp-ink);
  }

  .c6-story-copy h3 {
    font-size: 28px;
  }

  .c6-archive-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .c6-archive-head h2 {
    font-size: 34px;
  }

  .c6-filters {
    justify-content: flex-start;
  }

  .c6-archive-item {
    min-height: 0;
    grid-template-columns: 1fr 44px;
    gap: 12px;
    padding: 24px 0;
  }

  .c6-archive-category {
    grid-column: 1 / -1;
  }

  .c6-archive-item h3 {
    font-size: 21px;
  }

  .c6-archive-item p {
    font-size: 13px;
  }

  .c6-listening figure {
    min-height: 440px;
  }

  .c6-listening-copy h2 {
    font-size: 36px;
  }

  .c6-comment-form > div {
    align-items: stretch;
    flex-direction: column;
  }

  .c6-comment-form .c6-button {
    width: 100%;
  }

  .c6-subscribe {
    padding: 78px 0;
  }

  .c6-email-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .c6-subscribe input {
    border-right: 1px solid var(--sp-line-dark);
    border-radius: 2px;
  }

  .c6-email-row button {
    min-width: 0;
    border-radius: 2px;
  }

  .c6-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .c6-brand {
    font-size: 13px;
  }

  .c6-brand-mark {
    width: 27px;
    height: 27px;
  }

  .c6-hero h1 {
    font-size: 39px;
  }

  .c6-filters button {
    flex: 1 1 calc(50% - 8px);
  }
}
