@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  color-scheme: light;
  --pure-white: #fafafa;
  --soft-white: #f4f5f7;
  --ice-gray: #e8ecf1;
  --silver-gray: #b8c0cc;
  --deep-navy: #16233b;
  --ink-navy: #0f172a;
  --charcoal: #16181d;
  --steel-blue: #5e7698;
  --line: rgba(15, 23, 42, 0.12);
  --line-dark: rgba(250, 250, 250, 0.14);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --radius: 8px;
  --max: 1180px;
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--pure-white);
  color: var(--charcoal);
}

body.dark-page {
  background: var(--charcoal);
  color: var(--pure-white);
}

body.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--ink-navy);
  color: var(--pure-white);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 250, 0.88);
  backdrop-filter: blur(18px);
}

.dark-page .site-header {
  border-bottom-color: var(--line-dark);
  background: rgba(22, 24, 29, 0.88);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: var(--charcoal);
  color: var(--pure-white);
  font-size: 0.9rem;
}

.dark-page .brand-mark {
  background: var(--pure-white);
  color: var(--charcoal);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  color: rgba(22, 24, 29, 0.72);
  font-size: 0.92rem;
}

.dark-page .nav-links {
  color: rgba(250, 250, 250, 0.72);
}

.nav-links a:hover {
  color: currentColor;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--steel-blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dark-page .eyebrow {
  color: var(--silver-gray);
}

h1,
h2,
h3,
p {
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: 2.72rem;
  line-height: 1.02;
}

h2 {
  font-size: 2rem;
  line-height: 1.08;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.35;
}

p {
  line-height: 1.72;
}

.lead {
  margin: 22px 0 0;
  color: rgba(22, 24, 29, 0.68);
  font-size: 1rem;
}

.dark-page .lead {
  color: rgba(250, 250, 250, 0.7);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  background: transparent;
  color: var(--charcoal);
  font-weight: 900;
}

.button.primary {
  border-color: var(--ink-navy);
  background: var(--ink-navy);
  color: var(--pure-white);
}

.button.silver {
  border-color: var(--silver-gray);
  background: linear-gradient(135deg, var(--pure-white), var(--ice-gray));
  color: var(--ink-navy);
}

.button.ghost {
  border-color: var(--line);
  color: var(--charcoal);
}

.dark-page .button.primary,
.button.on-dark {
  border-color: var(--pure-white);
  background: var(--pure-white);
  color: var(--ink-navy);
}

.dark-page .button.ghost {
  border-color: var(--line-dark);
  color: var(--pure-white);
}

.hero {
  display: grid;
  gap: 38px;
  padding: 48px 0 42px;
}

.hero-copy {
  display: grid;
  gap: 0;
}

.hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.price {
  font-size: 1.52rem;
  font-weight: 950;
}

.line-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(22, 24, 29, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
}

.dark-page .line-label {
  border-color: var(--line-dark);
  color: rgba(250, 250, 250, 0.72);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.visual-stage {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(250, 250, 250, 0.94), rgba(232, 236, 241, 0.9)),
    var(--soft-white);
  box-shadow: var(--shadow);
}

.dark-page .visual-stage {
  border-color: var(--line-dark);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(22, 35, 59, 0.92)),
    var(--ink-navy);
}

.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94, 118, 152, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 118, 152, 0.14) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 88%);
}

.product-stack {
  position: relative;
  min-height: 470px;
}

.box-mockup {
  position: absolute;
  right: 24px;
  bottom: 46px;
  width: min(72%, 340px);
  height: 190px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, #ffffff 0%, #eef2f6 48%, #cfd6df 100%);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.2);
}

.box-mockup.black {
  left: 26px;
  right: auto;
  bottom: 116px;
  width: min(68%, 318px);
  height: 154px;
  background:
    linear-gradient(150deg, #1e222a, #0f172a 58%, #05070b);
  border-color: rgba(250, 250, 250, 0.16);
}

.box-mockup::before,
.box-mockup.black::before {
  content: "CHAEWOON";
  position: absolute;
  left: 24px;
  top: 22px;
  color: rgba(15, 23, 42, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.box-mockup.black::before {
  color: rgba(250, 250, 250, 0.78);
}

.reading-card,
.message-card,
.number-card {
  position: absolute;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: var(--radius);
  background: rgba(250, 250, 250, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.reading-card {
  left: 22px;
  top: 28px;
  width: 176px;
  min-height: 224px;
  padding: 18px;
}

.reading-card strong,
.message-card strong,
.number-card strong {
  display: block;
  color: var(--ink-navy);
}

.reading-lines {
  display: grid;
  gap: 8px;
  margin-top: 44px;
}

.reading-lines span {
  height: 5px;
  border-radius: 999px;
  background: var(--ice-gray);
}

.reading-lines span:nth-child(2) {
  width: 72%;
}

.reading-lines span:nth-child(3) {
  width: 54%;
  background: var(--silver-gray);
}

.message-card {
  right: 34px;
  top: 46px;
  width: 144px;
  min-height: 96px;
  padding: 16px;
}

.number-card {
  left: 44px;
  bottom: 34px;
  width: 158px;
  min-height: 86px;
  padding: 16px;
}

.number-card span,
.message-card span,
.reading-card span {
  color: rgba(15, 23, 42, 0.58);
  font-size: 0.78rem;
}

.bracelet-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -42%);
  filter: drop-shadow(0 24px 26px rgba(15, 23, 42, 0.22));
}

.bracelet {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.stone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 18px;
  border-radius: 44% 56% 48% 52%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(135deg, #0f172a, #25385d);
  border: 1px solid rgba(255, 255, 255, 0.32);
  transform:
    rotate(calc(var(--i) * 24deg))
    translateY(-112px)
    rotate(calc(var(--i) * -24deg));
}

.stone:nth-child(3n) {
  width: 28px;
  height: 16px;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.7), transparent 25%),
    linear-gradient(135deg, #05070b, #1d2430);
}

.stone:nth-child(4n) {
  width: 20px;
  height: 24px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.62), transparent 26%),
    linear-gradient(135deg, #16233b, #5e7698);
}

.signature-charm {
  position: absolute;
  left: 50%;
  top: calc(50% + 106px);
  display: grid;
  place-items: center;
  width: 34px;
  height: 42px;
  border-radius: 15px 15px 18px 18px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffffff, #b8c0cc 52%, #eef2f7);
  border: 1px solid rgba(15, 23, 42, 0.18);
  color: var(--ink-navy);
  font-size: 0.72rem;
  font-weight: 950;
}

.section {
  padding: 64px 0;
}

.section.dark-band {
  background: var(--ink-navy);
  color: var(--pure-white);
}

.section.soft-band {
  background: var(--soft-white);
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 720px;
  margin: 0;
  color: rgba(22, 24, 29, 0.68);
}

.dark-band .section-head p {
  color: rgba(250, 250, 250, 0.7);
}

.editorial {
  display: grid;
  gap: 24px;
}

.editorial-panel {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.editorial-panel p {
  margin: 18px 0 0;
  color: rgba(22, 24, 29, 0.7);
  font-size: 1.05rem;
}

.composition-grid,
.daily-grid,
.price-grid,
.step-grid {
  display: grid;
  gap: 14px;
}

.composition-card,
.daily-card,
.price-card,
.step-card,
.reading-result,
.recommend-card,
.notice-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--pure-white);
}

.composition-card,
.daily-card {
  min-height: 178px;
  padding: 22px;
}

.composition-card .meta,
.daily-card .meta {
  display: block;
  margin-bottom: 34px;
  color: var(--steel-blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.composition-card p,
.daily-card p {
  margin: 10px 0 0;
  color: rgba(22, 24, 29, 0.66);
}

.price-card {
  display: grid;
  gap: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.price-card.dark {
  background: var(--charcoal);
  color: var(--pure-white);
  border-color: var(--line-dark);
}

.price-card ul,
.detail-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card li,
.detail-list li {
  display: flex;
  gap: 10px;
  color: rgba(22, 24, 29, 0.72);
}

.price-card.dark li {
  color: rgba(250, 250, 250, 0.72);
}

.price-card li::before,
.detail-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--steel-blue);
}

.daily-visual {
  min-height: 350px;
}

.daily-visual .bracelet-wrap {
  top: 46%;
  width: 238px;
  height: 238px;
}

.funnel-page {
  background: var(--soft-white);
}

.create-hero {
  padding: 44px 0 28px;
}

.create-layout {
  display: grid;
  gap: 20px;
  align-items: start;
  padding-bottom: 70px;
}

.process-panel {
  display: grid;
  gap: 14px;
}

.step-card {
  padding: 20px;
}

.step-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--steel-blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.input-row {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.field {
  display: grid;
  gap: 8px;
  color: rgba(22, 24, 29, 0.68);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--pure-white);
  color: var(--charcoal);
  padding: 0 14px;
}

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

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--pure-white);
  color: var(--charcoal);
  font-weight: 850;
}

.choice span::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--silver-gray);
  border-radius: 50%;
}

.choice input:checked + span {
  border-color: var(--ink-navy);
  background: var(--ink-navy);
  color: var(--pure-white);
}

.choice input:checked + span::after {
  border-color: var(--pure-white);
  background: var(--silver-gray);
}

.note {
  margin: 14px 0 0;
  color: rgba(22, 24, 29, 0.56);
  font-size: 0.88rem;
}

.reading-result {
  display: none;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--pure-white), var(--soft-white));
  box-shadow: var(--shadow);
}

.reading-result.is-visible {
  display: block;
}

.result-top {
  padding: 24px;
  background: var(--ink-navy);
  color: var(--pure-white);
}

.result-top p {
  margin: 12px 0 0;
  color: rgba(250, 250, 250, 0.72);
}

.result-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.reading-line {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 250, 250, 0.82);
}

.reading-line span {
  display: block;
  margin-bottom: 8px;
  color: var(--steel-blue);
  font-size: 0.76rem;
  font-weight: 950;
}

.reading-line p {
  margin: 0;
  color: rgba(22, 24, 29, 0.74);
}

.recommend-card {
  overflow: hidden;
  background: var(--charcoal);
  color: var(--pure-white);
}

.recommend-visual {
  position: relative;
  min-height: 280px;
  background:
    linear-gradient(135deg, #0f172a, #16233b 60%, #111318);
}

.recommend-visual .bracelet-wrap {
  width: 210px;
  height: 210px;
}

.recommend-copy {
  padding: 22px;
}

.recommend-copy p {
  margin: 10px 0 0;
  color: rgba(250, 250, 250, 0.7);
}

.variant-summary {
  display: grid;
  gap: 14px;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--pure-white);
  padding: 18px;
}

.mini-card p {
  margin: 8px 0 0;
  color: rgba(22, 24, 29, 0.62);
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 16px;
  background:
    linear-gradient(135deg, var(--pure-white), var(--soft-white));
}

.notice-panel {
  width: min(680px, 100%);
  padding: 28px;
  box-shadow: var(--shadow);
}

.notice-panel p {
  color: rgba(22, 24, 29, 0.68);
}

.redirect-card {
  width: min(560px, 100%);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(250, 250, 250, 0.08);
}

.redirect-card p {
  color: rgba(250, 250, 250, 0.72);
}

@media (min-width: 640px) {
  .shell {
    width: min(var(--max), calc(100% - 48px));
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .nav-links {
    display: flex;
  }

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

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

  .input-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 920px) {
  h1 {
    font-size: 4.65rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 3.3rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 58px;
    align-items: center;
    min-height: calc(100vh - 66px);
    padding: 58px 0;
  }

  .editorial {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 70px;
    align-items: start;
  }

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

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

  .price-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.46fr);
    align-items: start;
  }

  .create-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
    gap: 24px;
  }

  .variant-summary {
    position: sticky;
    top: 90px;
  }
}

@media (min-width: 1160px) {
  h1 {
    font-size: 5rem;
  }
}

/* Editorial line-test landing */
.page-premium,
.page-daily {
  min-width: 320px;
  background: var(--pure-white);
}

.page-premium {
  background: #121419;
  color: var(--pure-white);
}

.page-daily {
  background: var(--pure-white);
  color: var(--charcoal);
}

.cx-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 clamp(18px, 4vw, 44px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(250, 250, 250, 0.82);
  backdrop-filter: blur(16px);
}

.page-premium .cx-header {
  border-bottom-color: rgba(250, 250, 250, 0.12);
  background: rgba(18, 20, 25, 0.86);
}

.cx-brand {
  font-size: 0.95rem;
  font-weight: 950;
}

.cx-nav {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  color: rgba(22, 24, 29, 0.65);
  font-size: 0.86rem;
}

.page-premium .cx-nav {
  color: rgba(250, 250, 250, 0.68);
}

.cx-hero {
  position: relative;
  display: grid;
  gap: 28px;
  min-height: calc(100vh - 58px);
  padding: clamp(28px, 6vw, 70px) clamp(18px, 4vw, 44px) 48px;
  overflow: hidden;
}

.hero-word {
  position: absolute;
  left: -0.07em;
  top: clamp(112px, 22vw, 176px);
  z-index: 0;
  color: rgba(22, 24, 29, 0.055);
  font-size: clamp(5.2rem, 21vw, 20rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.page-premium .hero-word {
  color: rgba(250, 250, 250, 0.055);
}

.cx-copy,
.product-stage {
  position: relative;
  z-index: 1;
}

.cx-copy {
  align-self: end;
  max-width: 660px;
  padding-top: 20px;
}

.cx-kicker {
  margin: 0 0 12px;
  color: var(--steel-blue);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-premium .cx-kicker {
  color: var(--silver-gray);
}

.cx-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.35rem, 7.2vw, 4.35rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.cx-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(22, 24, 29, 0.66);
}

.page-premium .cx-copy p {
  color: rgba(250, 250, 250, 0.68);
}

.cx-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.cx-meta strong {
  font-size: 1.8rem;
  font-weight: 950;
}

.cx-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  color: rgba(22, 24, 29, 0.64);
  font-size: 0.78rem;
  font-weight: 850;
}

.page-premium .cx-meta span {
  border-color: rgba(250, 250, 250, 0.18);
  color: rgba(250, 250, 250, 0.7);
}

.cx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 950;
}

.cx-button.dark {
  background: var(--ink-navy);
  color: var(--pure-white);
}

.cx-button.light {
  background: var(--pure-white);
  color: var(--ink-navy);
}

.product-stage {
  display: grid;
  gap: 16px;
  align-self: center;
}

.wear-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 34px;
  background: var(--soft-white);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
}

.page-premium .wear-card {
  border-color: rgba(250, 250, 250, 0.14);
  background: #191c22;
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.38);
}

.wear-card p {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  margin: 0;
  color: rgba(22, 24, 29, 0.64);
  font-size: 0.92rem;
  font-weight: 750;
}

.page-premium .wear-card p {
  color: rgba(250, 250, 250, 0.68);
}

.wear-label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 4;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  color: rgba(22, 24, 29, 0.72);
  font-size: 0.76rem;
  font-weight: 950;
}

.page-premium .wear-label {
  border-color: rgba(250, 250, 250, 0.2);
  color: rgba(250, 250, 250, 0.72);
}

.wrist {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 132px;
  border-radius: 999px;
  transform: translate(-50%, -48%) rotate(-12deg);
  box-shadow: inset 0 0 26px rgba(255, 255, 255, 0.28);
}

.wrist.pale {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 18%, transparent 82%, rgba(15, 23, 42, 0.08)),
    linear-gradient(135deg, #e8d2c7, #f1ddd3 48%, #dcc1b4);
}

.wrist.deep {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 24%, rgba(0, 0, 0, 0.18)),
    linear-gradient(135deg, #86614d, #b08369 55%, #6f4c3f);
}

.wrist.shirt::before {
  content: "";
  position: absolute;
  inset: auto -18px -58px -18px;
  height: 82px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #e9edf2);
  transform: rotate(2deg);
}

.wrist.denim::before {
  content: "";
  position: absolute;
  inset: -68px -26px auto -24px;
  height: 96px;
  border-radius: 28px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, #425e80, #1d344f);
}

.chain,
.bead-line,
.motif-row,
.stone-bar {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 52%;
  height: 16px;
  border-radius: 999px;
  transform: rotate(1deg);
}

.chain-thin {
  background:
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(245, 248, 252, 0.95) 7px 13px, transparent 13px 20px);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.18));
}

.chain-bold {
  top: 42%;
  height: 18px;
  background:
    repeating-linear-gradient(90deg, transparent 0 8px, #f7f9fb 8px 18px, transparent 18px 26px);
}

.chain-soft {
  top: 60%;
  height: 8px;
  background: linear-gradient(90deg, transparent, #c2cad5, transparent);
}

.motif-row {
  top: 43%;
  display: flex;
  justify-content: space-between;
  height: auto;
  background: none;
}

.motif-row span {
  width: 36px;
  height: 36px;
  border-radius: 42% 58% 46% 54%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.75), transparent 24%),
    linear-gradient(135deg, #02050a, #15233e);
  border: 3px solid #eef2f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  transform: rotate(45deg);
}

.bead-line {
  background:
    radial-gradient(circle at 8px 8px, #05070b 0 7px, transparent 8px) 0 0 / 23px 16px repeat-x;
}

.bead-line.dark {
  top: 55%;
}

.bead-line.black {
  top: 46%;
}

.bead-line.navy {
  top: 58%;
  background:
    radial-gradient(circle at 8px 8px, #16233b 0 7px, transparent 8px) 0 0 / 23px 16px repeat-x;
}

.bead-line.color {
  top: 48%;
  background:
    radial-gradient(circle at 8px 8px, #5e7698 0 6px, transparent 7px) 0 0 / 22px 15px repeat-x;
}

.stone-bar {
  left: 22%;
  right: 22%;
  top: 66%;
  height: 7px;
  background: linear-gradient(90deg, transparent, #16233b, #b8c0cc, transparent);
}

.tiny-charm {
  position: absolute;
  left: 58%;
  top: 63%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #b8c0cc);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
}

.cx-section,
.cx-price-section {
  padding: clamp(64px, 10vw, 120px) clamp(18px, 4vw, 44px);
}

.cx-section.cx-invert {
  background: var(--pure-white);
  color: var(--charcoal);
}

.cx-section.cx-soft {
  background: var(--soft-white);
}

.cx-section-head {
  max-width: 780px;
  margin-bottom: 26px;
}

.cx-section-head.narrow {
  max-width: 860px;
}

.cx-section-head h2,
.price-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 5.6rem);
  line-height: 0.98;
  font-weight: 950;
}

.cx-section-head p:not(.cx-kicker) {
  color: rgba(22, 24, 29, 0.66);
}

.page-premium .cx-section:not(.cx-invert) .cx-section-head p:not(.cx-kicker) {
  color: rgba(250, 250, 250, 0.68);
}

.edition-grid {
  display: grid;
  gap: 14px;
}

.edition-grid article {
  min-height: 230px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 26px;
  padding: 22px;
  background: var(--pure-white);
}

.page-premium .edition-grid:not(.light-grid) article {
  background: var(--pure-white);
  color: var(--charcoal);
}

.edition-grid article span {
  color: var(--steel-blue);
  font-size: 0.8rem;
  font-weight: 950;
}

.edition-grid article h3 {
  margin-top: 54px;
  font-size: 1.6rem;
}

.edition-grid article p {
  color: rgba(22, 24, 29, 0.66);
}

.price-panel {
  display: grid;
  gap: 26px;
  border-radius: 34px;
  padding: clamp(24px, 5vw, 48px);
}

.price-panel.premium {
  border: 1px solid rgba(250, 250, 250, 0.14);
  background: #16181d;
  color: var(--pure-white);
}

.price-panel.daily {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--soft-white);
}

.price-box {
  display: grid;
  gap: 20px;
}

.price-box strong {
  font-size: 2rem;
  font-weight: 950;
}

.price-box ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(22, 24, 29, 0.68);
}

.price-panel.premium .price-box ul {
  color: rgba(250, 250, 250, 0.68);
}

.price-box li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--steel-blue);
}

@media (min-width: 760px) {
  .cx-hero {
    grid-template-columns: minmax(320px, 0.84fr) minmax(420px, 1.16fr);
    align-items: center;
  }

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

  .premium-stage .bold-card,
  .daily-stage .daily-deep {
    transform: translateY(58px);
  }

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

  .price-panel {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
    align-items: end;
  }
}

@media (min-width: 1120px) {
  .cx-copy h1 {
    font-size: 4.55rem;
  }

  .wear-card {
    min-height: 430px;
  }

  .wrist {
    width: 86%;
    height: 156px;
  }
}

.image-hero {
  gap: clamp(28px, 5vw, 70px);
}

.image-hero .hero-word {
  top: clamp(92px, 14vw, 132px);
  font-size: clamp(5rem, 18vw, 17rem);
  opacity: 0.92;
}

.image-hero .cx-copy {
  align-self: center;
  padding-top: 0;
}

.image-hero .cx-copy h1 {
  max-width: 640px;
  font-size: clamp(2.45rem, 6.2vw, 5.2rem);
  line-height: 0.98;
}

.image-hero .cx-copy p {
  max-width: 560px;
}

.hero-product-photo {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 420px;
  border-radius: 38px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--soft-white);
  box-shadow: 0 34px 110px rgba(15, 23, 42, 0.18);
}

.page-premium .hero-product-photo {
  border-color: rgba(250, 250, 250, 0.13);
  background: #0f1116;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.42);
}

.hero-product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.premium-hero .hero-product-photo img {
  object-position: 58% center;
}

.daily-hero .hero-product-photo img {
  object-position: 50% center;
}

.photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid rgba(250, 250, 250, 0.42);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  color: var(--pure-white);
  backdrop-filter: blur(18px);
}

.page-daily .photo-caption {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(250, 250, 250, 0.72);
  color: var(--charcoal);
}

.photo-caption span {
  font-size: 0.78rem;
  font-weight: 950;
}

.photo-caption strong {
  font-size: 0.82rem;
  font-weight: 850;
}

@media (max-width: 759px) {
  .image-hero {
    padding-top: 22px;
    gap: 22px;
  }

  .image-hero .hero-product-photo {
    order: -1;
  }

  .image-hero .cx-copy h1 {
    font-size: clamp(2rem, 10.2vw, 3.15rem);
    line-height: 1.02;
  }

  .hero-product-photo,
  .hero-product-photo img {
    min-height: 318px;
  }

  .cx-meta {
    margin-top: 18px;
  }

  .cx-meta strong {
    font-size: 1.52rem;
  }

  .cx-button {
    margin-top: 18px;
  }

  .photo-caption {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 20px;
  }
}

/* Direction v4.1: keep the najeon editorial mood, but make the funnel visible. */
.najeon-page .image-hero .cx-copy {
  display: flex;
  flex-direction: column;
}

.najeon-page .cx-meta {
  order: 5;
}

.najeon-page .image-hero .cx-button {
  order: 6;
}

.najeon-page .hero-flow {
  order: 7;
}

@media (min-width: 760px) {
  .najeon-page .cx-hero.najeon-hero {
    min-height: calc(100vh - 68px);
    padding-top: clamp(44px, 4.6vw, 72px);
    padding-bottom: clamp(34px, 3.4vw, 54px);
    align-items: center;
  }

  .najeon-page .image-hero .cx-copy h1 {
    max-width: 660px;
    font-size: clamp(3.15rem, 5.05vw, 6.15rem);
    line-height: 0.98;
  }

  .najeon-page .image-hero .cx-copy p {
    margin-top: 24px;
    max-width: 500px;
  }

  .najeon-page .najeon-tone {
    margin-top: 24px;
  }

  .najeon-page .element-preview {
    margin-top: 22px;
  }

  .najeon-page .cx-meta {
    margin-top: 22px;
  }

  .najeon-page .cx-meta strong {
    font-size: clamp(2.25rem, 3.1vw, 3.85rem);
  }

  .najeon-page .image-hero .cx-button {
    margin-top: 18px;
  }

  .najeon-page .hero-flow {
    margin-top: 18px;
  }
}

/* Logo refinement: the wordmark carries the brand; no generic badge or decorative mark. */
.brand-lockup,
.page-premium .cx-brand.brand-lockup,
.page-daily .cx-brand.brand-lockup,
.funnel-page .brand.brand-lockup {
  gap: 0;
}

.brand-sigil {
  display: none;
}

.brand-word {
  position: relative;
  display: inline-grid;
  gap: 3px;
  padding-bottom: 1px;
  transform: none;
}

.brand-ko {
  font-size: 1.22rem;
  font-weight: 950;
  line-height: 0.95;
}

.brand-en {
  display: block;
  color: rgba(17, 19, 24, 0.5);
  font-size: 0.56rem;
  font-weight: 850;
  line-height: 1;
}

.page-premium .cx-header,
.page-daily .cx-header {
  padding-left: 26px;
}

.funnel-page .brand-word {
  gap: 3px;
}

@media (max-width: 759px) {
  .brand-ko {
    font-size: 1.16rem;
  }

  .brand-en {
    display: none;
  }

  .page-premium .cx-header,
  .page-daily .cx-header {
    padding-left: 16px;
  }
}

/* Funnel polish to match the revised landing direction. */
body.funnel-page,
body[data-page="coming-soon"] {
  background: #f4f5f7;
  color: #111318;
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Segoe UI", Arial, sans-serif;
}

.funnel-page .site-header {
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  background: rgba(250, 250, 250, 0.86);
  backdrop-filter: blur(18px);
}

.funnel-page .brand {
  color: #111318;
  font-weight: 900;
  letter-spacing: 0;
}

.funnel-page .brand-mark {
  border: 0;
  background: #111318;
  color: #fafafa;
}

.funnel-page .create-hero {
  padding: clamp(48px, 8vw, 86px) 0 30px;
}

.funnel-page .create-hero h1,
.notice-panel h1 {
  max-width: 720px;
  color: #111318;
  font-size: clamp(2.45rem, 8vw, 4.9rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
  word-break: keep-all;
}

.funnel-page .lead,
.notice-panel p {
  color: rgba(17, 19, 24, 0.68);
  font-size: 1rem;
  line-height: 1.78;
}

.funnel-page .step-card,
.funnel-page .mini-card,
.funnel-page .reading-line,
.funnel-page .reading-result,
.funnel-page .recommend-card,
.notice-panel {
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 24px;
  background: #fafafa;
  box-shadow: 0 14px 44px rgba(17, 19, 24, 0.05);
}

.funnel-page .step-card {
  padding: 24px;
}

.funnel-page .step-card h2 {
  color: #111318;
  font-size: clamp(1.7rem, 6.4vw, 2.6rem);
  line-height: 1.12;
  font-weight: 950;
}

.funnel-page .step-kicker,
.funnel-page .eyebrow,
.notice-panel .eyebrow {
  color: rgba(17, 19, 24, 0.68);
  font-weight: 900;
  letter-spacing: 0;
}

.funnel-page .field input,
.funnel-page .choice span {
  min-height: 54px;
  border-color: rgba(17, 19, 24, 0.1);
  border-radius: 16px;
  background: #fafafa;
}

.funnel-page .choice input:checked + span {
  border-color: #111318;
  background: #111318;
  color: #fafafa;
}

.funnel-page .button.primary,
.notice-panel .button.primary {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #111318;
  color: #fafafa;
  font-weight: 900;
  letter-spacing: 0;
}

.funnel-page .reading-result {
  overflow: hidden;
  background: #fafafa;
}

.funnel-page .result-top {
  background: #111318;
}

.funnel-page .result-top h2 {
  color: #fafafa;
  font-weight: 950;
  letter-spacing: 0;
}

.funnel-page .recommend-card {
  overflow: hidden;
  background: #111318;
  color: #fafafa;
}

.coming-soon {
  background:
    radial-gradient(circle at 50% 0, rgba(184, 192, 204, 0.2), transparent 32rem),
    #f4f5f7;
}

.notice-panel {
  padding: clamp(28px, 7vw, 54px);
}

.notice-panel .mini-card {
  border-radius: 20px;
}

@media (max-width: 759px) {
  .funnel-page .nav-links {
    display: none;
  }

  .funnel-page .create-hero h1,
  .notice-panel h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .funnel-page .step-card,
  .funnel-page .mini-card,
  .notice-panel {
    border-radius: 20px;
  }
}

/* Final editorial direction: white canvas, black type, product-first luxury layout. */
body.page-premium,
body.page-daily {
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0, rgba(184, 192, 204, 0.2), transparent 34rem),
    #e9e9e9;
  color: #111318;
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

.page-premium .cx-header,
.page-daily .cx-header {
  position: fixed;
  left: 50%;
  top: 24px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 56px));
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.78);
  color: #111318;
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.page-premium .cx-brand,
.page-daily .cx-brand {
  color: #111318;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
}

.page-premium .cx-brand::before,
.page-daily .cx-brand::before {
  content: "C";
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 50%;
  background: #111318;
  color: #fafafa;
  font-size: 0.78rem;
  font-weight: 900;
}

.page-premium .cx-nav,
.page-daily .cx-nav {
  display: flex;
  gap: 24px;
  color: rgba(17, 19, 24, 0.7);
  font-size: 0.83rem;
  font-weight: 650;
}

.page-premium main,
.page-daily main {
  padding: 16px 0 34px;
}

.page-premium .cx-hero.image-hero,
.page-daily .cx-hero.image-hero {
  position: relative;
  display: grid;
  width: min(1360px, calc(100% - 32px));
  min-height: calc(100svh - 32px);
  margin: 0 auto;
  padding: 104px clamp(18px, 3.2vw, 48px) clamp(20px, 3.2vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(17, 19, 24, 0.07);
  border-radius: 34px;
  background: #fafafa;
  box-shadow: 0 30px 90px rgba(17, 19, 24, 0.12);
}

.image-hero .hero-word {
  position: absolute;
  left: 50%;
  top: clamp(110px, 16vh, 160px);
  z-index: 0;
  width: max-content;
  color: rgba(17, 19, 24, 0.1);
  opacity: 1;
  font-size: clamp(5.4rem, 17vw, 17rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-premium .image-hero .hero-word,
.page-daily .image-hero .hero-word {
  color: rgba(17, 19, 24, 0.1);
}

.image-hero .hero-product-photo {
  position: relative;
  z-index: 1;
  align-self: center;
  overflow: visible;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.image-hero .hero-product-photo img {
  display: block;
  width: min(720px, 100%);
  max-height: min(66svh, 680px);
  height: auto;
  margin: 0 auto;
  border-radius: 38px;
  object-fit: contain;
  filter: drop-shadow(0 34px 44px rgba(17, 19, 24, 0.24));
}

.image-hero .photo-caption {
  position: absolute;
  right: clamp(8px, 5vw, 52px);
  bottom: clamp(-8px, 2vw, 20px);
  z-index: 3;
  width: min(370px, calc(100% - 32px));
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.82);
  color: #111318;
  box-shadow: 0 18px 46px rgba(17, 19, 24, 0.12);
  backdrop-filter: blur(16px);
}

.image-hero .photo-caption span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.image-hero .photo-caption strong {
  display: block;
  margin-top: 2px;
  color: rgba(17, 19, 24, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.25;
}

.image-hero .cx-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  justify-items: start;
  max-width: 480px;
  padding: 0;
}

.image-hero .cx-kicker,
.page-premium .cx-kicker,
.page-daily .cx-kicker {
  margin: 0 0 12px;
  color: #111318;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.image-hero .cx-copy h1 {
  max-width: 460px;
  color: #111318;
  font-size: clamp(2.55rem, 5.2vw, 5.2rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.image-hero .cx-copy p {
  max-width: 480px;
  margin: 18px 0 0;
  color: rgba(17, 19, 24, 0.68);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.72;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.image-hero .cx-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.image-hero .cx-meta strong {
  color: #111318;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 950;
  letter-spacing: 0;
}

.image-hero .cx-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(17, 19, 24, 0.14);
  border-radius: 999px;
  background: #fafafa;
  color: rgba(17, 19, 24, 0.64);
  font-size: 0.77rem;
  font-weight: 750;
}

.image-hero .cx-button,
.page-premium .cx-button,
.page-daily .cx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #111318;
  color: #fafafa;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: none;
}

.image-hero .cx-button::after {
  content: "→";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: 12px;
  border-radius: 50%;
  background: #fafafa;
  color: #111318;
  font-size: 1rem;
}

.page-premium .cx-section,
.page-daily .cx-section,
.page-premium .cx-price-section,
.page-daily .cx-price-section {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 128px) clamp(18px, 4vw, 62px);
  background: #fafafa;
}

.page-premium .cx-section.cx-invert,
.page-daily .cx-section.cx-soft {
  background: #f4f5f7;
  color: #111318;
}

.page-premium .cx-section-head,
.page-daily .cx-section-head {
  max-width: 820px;
}

.page-premium .cx-section-head h2,
.page-daily .cx-section-head h2,
.page-premium .price-panel h2,
.page-daily .price-panel h2 {
  color: #111318;
  font-size: clamp(2.1rem, 5.4vw, 5rem);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.page-premium .cx-section-head p:not(.cx-kicker),
.page-daily .cx-section-head p:not(.cx-kicker) {
  color: rgba(17, 19, 24, 0.66);
}

.page-premium .edition-grid,
.page-daily .edition-grid {
  gap: 18px;
}

.page-premium .edition-grid article,
.page-daily .edition-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 30px;
  background: #fafafa;
  color: #111318;
  box-shadow: 0 16px 52px rgba(17, 19, 24, 0.06);
}

.page-premium .edition-grid article span,
.page-daily .edition-grid article span {
  color: #111318;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.page-premium .edition-grid article h3,
.page-daily .edition-grid article h3 {
  margin-top: 54px;
  color: #111318;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0;
}

.page-premium .edition-grid article p,
.page-daily .edition-grid article p {
  color: rgba(17, 19, 24, 0.68);
  font-size: 0.96rem;
  line-height: 1.72;
}

.page-premium .price-panel,
.page-daily .price-panel {
  display: grid;
  gap: 34px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 34px;
  background: #fafafa;
  color: #111318;
  box-shadow: 0 18px 60px rgba(17, 19, 24, 0.08);
}

.page-premium .price-box,
.page-daily .price-box {
  max-width: 560px;
}

.page-premium .price-box strong,
.page-daily .price-box strong {
  color: #111318;
  font-size: 2.1rem;
  font-weight: 950;
  letter-spacing: 0;
}

.page-premium .price-box ul,
.page-daily .price-box ul {
  color: rgba(17, 19, 24, 0.7);
}

@media (min-width: 760px) {
  .page-premium .cx-hero.image-hero,
  .page-daily .cx-hero.image-hero {
    grid-template-columns: minmax(300px, 0.62fr) minmax(520px, 1.38fr);
    align-items: end;
    gap: clamp(20px, 4vw, 64px);
  }

  .image-hero .hero-product-photo {
    grid-column: 2;
    grid-row: 1;
  }

  .image-hero .cx-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .page-premium .price-panel,
  .page-daily .price-panel {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
    align-items: end;
  }
}

@media (max-width: 759px) {
  body.page-premium,
  body.page-daily {
    background: #e9e9e9;
  }

  .page-premium .cx-header,
  .page-daily .cx-header {
    top: 0;
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .page-premium .cx-nav,
  .page-daily .cx-nav {
    gap: 12px;
    font-size: 0.74rem;
  }

  .page-premium main,
  .page-daily main {
    padding-top: 8px;
  }

  .page-premium .cx-hero.image-hero,
  .page-daily .cx-hero.image-hero {
    width: calc(100% - 16px);
    min-height: auto;
    padding: 70px 14px 24px;
    border-radius: 24px;
  }

  .image-hero .hero-word {
    top: 108px;
    font-size: clamp(4rem, 24vw, 6.8rem);
    color: rgba(17, 19, 24, 0.07);
  }

  .image-hero .hero-product-photo {
    order: -1;
    margin: 34px 0 8px;
  }

  .image-hero .hero-product-photo img {
    width: 100%;
    max-height: 330px;
    border-radius: 24px;
    object-fit: cover;
  }

  .image-hero .photo-caption {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
    border-radius: 18px;
  }

  .image-hero .cx-copy {
    max-width: none;
    margin-top: 20px;
  }

  .image-hero .cx-copy h1 {
    max-width: 10.5em;
    font-size: clamp(2.05rem, 8.1vw, 2.6rem);
    line-height: 1.08;
  }

  .image-hero .cx-copy p {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .image-hero .cx-meta {
    margin-top: 22px;
  }

  .image-hero .cx-button,
  .page-premium .cx-button,
  .page-daily .cx-button {
    width: 100%;
  }

  .page-premium .cx-section,
  .page-daily .cx-section,
  .page-premium .cx-price-section,
  .page-daily .cx-price-section {
    width: calc(100% - 16px);
    padding: 68px 14px;
  }

  .page-premium .cx-section-head h2,
  .page-daily .cx-section-head h2,
  .page-premium .price-panel h2,
  .page-daily .price-panel h2 {
    font-size: clamp(2rem, 8.4vw, 2.75rem);
    line-height: 1.12;
  }

  .page-premium .edition-grid article,
  .page-daily .edition-grid article {
    min-height: 220px;
    padding: 24px;
    border-radius: 24px;
  }
}

@media (min-width: 760px) {
  .image-hero {
    grid-template-columns: minmax(320px, 0.78fr) minmax(460px, 1.22fr);
  }

  .hero-product-photo,
  .hero-product-photo img {
    min-height: min(66vh, 620px);
  }
}

@media (min-width: 1180px) {
  .image-hero .cx-copy h1 {
    font-size: 5.05rem;
  }
}

/* White editorial redesign */
.page-premium,
.page-daily {
  background: #e7e7e5;
  color: #111318;
  font-family: Inter, Pretendard, "Noto Sans KR", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

.page-premium *,
.page-daily * {
  letter-spacing: 0;
}

.cx-header {
  left: 50%;
  top: 18px;
  width: min(1360px, calc(100% - 28px));
  min-height: 64px;
  transform: translateX(-50%);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 28px 28px 0 0;
  background: rgba(250, 250, 250, 0.92);
  box-shadow: 0 18px 60px rgba(17, 19, 24, 0.08);
}

.page-premium .cx-header {
  border-color: rgba(17, 19, 24, 0.08);
  background: rgba(250, 250, 250, 0.92);
}

.cx-brand {
  color: #111318;
  font-size: 0.98rem;
  font-weight: 950;
}

.cx-nav,
.page-premium .cx-nav {
  color: rgba(17, 19, 24, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
}

.cx-hero.image-hero {
  width: min(1360px, calc(100% - 28px));
  min-height: calc(100vh - 32px);
  margin: 16px auto 0;
  padding: 86px 26px 30px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 28px;
  background: #fafafa;
  box-shadow: 0 30px 90px rgba(17, 19, 24, 0.1);
}

.page-premium .cx-hero.image-hero {
  background: #fafafa;
}

.image-hero .hero-word {
  left: 50%;
  top: 118px;
  transform: translateX(-50%);
  width: max-content;
  color: #111318;
  opacity: 1;
  font-size: clamp(5.2rem, 18vw, 18.5rem);
  font-weight: 950;
  line-height: 0.72;
  letter-spacing: 0;
  text-transform: lowercase;
}

.page-premium .hero-word {
  color: #111318;
}

.cx-copy {
  display: grid;
  align-self: end;
  max-width: none;
  padding-top: 0;
}

.cx-kicker,
.page-premium .cx-kicker {
  color: #111318;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  word-break: keep-all;
}

.image-hero .cx-copy h1 {
  max-width: 520px;
  color: #111318;
  font-size: clamp(2.05rem, 4.8vw, 4.7rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.image-hero .cx-copy p,
.page-premium .cx-copy p {
  max-width: 520px;
  color: rgba(17, 19, 24, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

.cx-meta {
  margin-top: 22px;
}

.cx-meta strong {
  color: #111318;
  font-size: 1.72rem;
  letter-spacing: 0;
}

.cx-meta span,
.page-premium .cx-meta span {
  border-color: rgba(17, 19, 24, 0.14);
  color: rgba(17, 19, 24, 0.66);
  background: #fafafa;
}

.cx-button,
.cx-button.light,
.cx-button.dark {
  min-height: 45px;
  margin-top: 22px;
  border: 0;
  background: #111318;
  color: #fafafa;
  box-shadow: none;
}

.hero-product-photo {
  overflow: visible;
  align-self: center;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-premium .hero-product-photo {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-product-photo img {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  height: auto;
  min-height: 0;
  margin: 0 auto;
  border-radius: 34px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(17, 19, 24, 0.2));
}

.premium-hero .hero-product-photo img,
.daily-hero .hero-product-photo img {
  object-position: center;
}

.photo-caption {
  left: auto;
  right: clamp(8px, 4vw, 42px);
  bottom: clamp(8px, 4vw, 34px);
  width: min(390px, calc(100% - 32px));
  min-height: 48px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(250, 250, 250, 0.78);
  color: #111318;
  box-shadow: 0 16px 40px rgba(17, 19, 24, 0.1);
}

.page-daily .photo-caption {
  background: rgba(250, 250, 250, 0.78);
}

.photo-caption strong {
  color: rgba(17, 19, 24, 0.74);
}

.cx-section,
.cx-price-section {
  width: min(1360px, calc(100% - 28px));
  margin: 0 auto;
  padding: 82px 26px;
  background: #fafafa;
}

.cx-section.cx-invert,
.cx-section.cx-soft {
  background: #f4f5f7;
  color: #111318;
}

.cx-section-head h2,
.price-panel h2 {
  color: #111318;
  font-size: clamp(2rem, 5.2vw, 5rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.cx-section-head p:not(.cx-kicker),
.page-premium .cx-section:not(.cx-invert) .cx-section-head p:not(.cx-kicker) {
  color: rgba(17, 19, 24, 0.68);
}

.edition-grid article,
.page-premium .edition-grid:not(.light-grid) article {
  min-height: 260px;
  border-color: rgba(17, 19, 24, 0.08);
  border-radius: 34px;
  background: #fafafa;
  color: #111318;
  box-shadow: 0 14px 50px rgba(17, 19, 24, 0.06);
}

.edition-grid article h3 {
  letter-spacing: 0;
}

.price-panel.premium,
.price-panel.daily {
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 34px;
  background: #fafafa;
  color: #111318;
  box-shadow: 0 18px 60px rgba(17, 19, 24, 0.08);
}

.price-panel.premium .price-box ul,
.price-box ul {
  color: rgba(17, 19, 24, 0.72);
}

@media (min-width: 760px) {
  .cx-hero.image-hero {
    grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1.38fr);
    gap: 24px;
  }

  .image-hero .hero-product-photo {
    order: initial;
  }
}

@media (min-width: 1180px) {
  .image-hero .cx-copy h1 {
    font-size: 4.7rem;
  }
}

@media (max-width: 759px) {
  .cx-header {
    left: auto;
    top: 0;
    width: 100%;
    min-height: 54px;
    transform: none;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 0 16px;
  }

  .cx-nav {
    gap: 12px;
    font-size: 0.78rem;
  }

  .cx-hero.image-hero {
    width: calc(100% - 16px);
    min-height: auto;
    margin-top: 8px;
    padding: 22px 14px 24px;
    border-radius: 20px;
  }

  .image-hero .hero-word {
    top: 116px;
    font-size: clamp(4.2rem, 25vw, 7.2rem);
  }

  .hero-product-photo img {
    width: 100%;
    max-height: 310px;
    border-radius: 22px;
    object-fit: cover;
  }

  .image-hero .cx-copy h1 {
    font-size: clamp(2rem, 9.2vw, 2.85rem);
    letter-spacing: 0;
  }

  .photo-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
    border-radius: 18px;
  }

  .cx-section,
  .cx-price-section {
    width: calc(100% - 16px);
    padding: 62px 14px;
  }
}

/* Brand identity pass: replace the generic C badge with a Chaewoon wordmark. */
.brand-lockup,
.page-premium .cx-brand.brand-lockup,
.page-daily .cx-brand.brand-lockup,
.funnel-page .brand.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111318;
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.page-premium .cx-brand.brand-lockup::before,
.page-daily .cx-brand.brand-lockup::before {
  content: none;
}

.brand-sigil {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 42px;
  height: 30px;
}

.brand-sigil::before,
.brand-sigil::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.brand-sigil::before {
  inset: 5px 2px 5px 0;
  border: 1.5px solid #111318;
}

.brand-sigil::after {
  left: 17px;
  top: 0;
  width: 18px;
  height: 30px;
  border: 1px solid rgba(17, 19, 24, 0.34);
  background:
    linear-gradient(90deg, transparent 45%, rgba(184, 192, 204, 0.72) 46% 54%, transparent 55%),
    rgba(250, 250, 250, 0.78);
  box-shadow: 0 10px 22px rgba(17, 19, 24, 0.12);
}

.brand-word {
  display: grid;
  gap: 1px;
  transform: translateY(1px);
}

.brand-ko {
  color: #111318;
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.brand-en {
  color: rgba(17, 19, 24, 0.48);
  font-size: 0.54rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.page-premium .cx-header,
.page-daily .cx-header {
  min-height: 62px;
  padding: 0 22px;
}

.page-premium .cx-nav,
.page-daily .cx-nav {
  gap: 28px;
  font-size: 0.8rem;
  font-weight: 760;
}

.image-hero .hero-word,
.page-premium .image-hero .hero-word,
.page-daily .image-hero .hero-word {
  color: rgba(17, 19, 24, 0.075);
  font-size: clamp(5rem, 15vw, 15rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}

.image-hero .cx-copy h1 {
  font-weight: 950;
}

.image-hero .cx-copy h1::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, #111318, rgba(184, 192, 204, 0.16));
}

.image-hero .photo-caption {
  border-color: rgba(17, 19, 24, 0.08);
  background: rgba(250, 250, 250, 0.88);
}

.funnel-page .brand-mark {
  display: none;
}

@media (max-width: 759px) {
  .brand-lockup,
  .page-premium .cx-brand.brand-lockup,
  .page-daily .cx-brand.brand-lockup,
  .funnel-page .brand.brand-lockup {
    gap: 9px;
  }

  .brand-sigil {
    width: 36px;
    height: 26px;
  }

  .brand-sigil::before {
    inset: 4px 2px 4px 0;
  }

  .brand-sigil::after {
    left: 15px;
    width: 16px;
    height: 26px;
  }

  .brand-ko {
    font-size: 1rem;
  }

  .brand-en {
    display: none;
  }

  .page-premium .cx-header,
  .page-daily .cx-header {
    min-height: 56px;
    padding: 0 14px;
  }

  .page-premium .cx-nav,
  .page-daily .cx-nav {
    gap: 12px;
    font-size: 0.72rem;
  }

  .image-hero .hero-word,
  .page-premium .image-hero .hero-word,
  .page-daily .image-hero .hero-word {
    color: rgba(17, 19, 24, 0.055);
    font-size: clamp(3.8rem, 21vw, 6.2rem);
  }
}

/* Final logo lock: simple Korean wordmark, no badge. */
.brand-lockup,
.page-premium .cx-brand.brand-lockup,
.page-daily .cx-brand.brand-lockup,
.funnel-page .brand.brand-lockup {
  gap: 0;
}

.brand-lockup .brand-sigil {
  display: none;
}

.brand-lockup .brand-word {
  display: inline-grid;
  gap: 3px;
  transform: none;
}

.brand-lockup .brand-ko {
  color: #111318;
  font-size: 1.22rem;
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-lockup .brand-en {
  display: block;
  color: rgba(17, 19, 24, 0.48);
  font-size: 0.56rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

@media (max-width: 759px) {
  .brand-lockup .brand-ko {
    font-size: 1.16rem;
  }

  .brand-lockup .brand-en {
    display: none;
  }
}

/* Make the fake-door value proposition explicit in the first viewport. */
.image-hero .cx-copy h1 {
  max-width: 620px;
}

.image-hero .cx-copy p {
  max-width: 560px;
}

.hero-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(560px, 100%);
  margin-top: 22px;
}

.hero-flow span {
  min-height: 74px;
  padding: 13px 12px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 18px;
  background: rgba(250, 250, 250, 0.74);
  color: rgba(17, 19, 24, 0.76);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
  box-shadow: 0 12px 34px rgba(17, 19, 24, 0.045);
  backdrop-filter: blur(12px);
}

.hero-flow b {
  display: block;
  margin-bottom: 9px;
  color: #111318;
  font-size: 0.72rem;
  font-weight: 950;
}

.image-hero .cx-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.72);
}

.image-hero .photo-caption span {
  color: #111318;
}

.image-hero .photo-caption strong {
  color: rgba(17, 19, 24, 0.66);
}

@media (min-width: 760px) {
  .page-premium .cx-hero.image-hero,
  .page-daily .cx-hero.image-hero {
    grid-template-columns: minmax(430px, 0.82fr) minmax(520px, 1.18fr);
  }

  .image-hero .cx-copy h1 {
    font-size: clamp(3.45rem, 4.9vw, 5.15rem);
  }
}

@media (max-width: 759px) {
  .image-hero .cx-copy h1 {
    max-width: 11em;
    font-size: clamp(2rem, 7.8vw, 2.55rem);
  }

  .image-hero .cx-meta {
    order: 3;
  }

  .image-hero .cx-button {
    order: 4;
  }

  .hero-flow {
    order: 5;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 18px;
  }

  .hero-flow span {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.82rem;
  }

  .hero-flow b {
    margin: 0 12px 0 0;
  }
}

/* Direction v2: Chaewoon as a cool personal-jewelry reading atelier. */
body.atelier-page {
  background:
    linear-gradient(180deg, #f1f2f4 0, #fafafa 52%, #eef1f5 100%);
}

.atelier-page .cx-header {
  top: 18px;
  width: min(1220px, calc(100% - 40px));
  min-height: 58px;
  border-radius: 0;
  border-color: rgba(17, 19, 24, 0.1);
  background: rgba(250, 250, 250, 0.9);
  box-shadow: none;
}

.atelier-page .cx-nav {
  color: rgba(17, 19, 24, 0.62);
}

.atelier-page .cx-hero.atelier-hero {
  width: min(1220px, calc(100% - 40px));
  min-height: calc(100svh - 36px);
  margin-top: 18px;
  padding: 92px clamp(22px, 4vw, 56px) clamp(24px, 4vw, 56px);
  border-radius: 0;
  border-color: rgba(17, 19, 24, 0.1);
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 0 1px, transparent 1px 100%) 0 0 / 88px 88px,
    linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0 1px, transparent 1px 100%) 0 0 / 88px 88px,
    #fafafa;
  box-shadow: 0 26px 86px rgba(17, 19, 24, 0.12);
}

.atelier-page .hero-word {
  display: none;
}

.atelier-page .cx-copy {
  align-self: center;
  max-width: 520px;
}

.atelier-page .image-hero .cx-kicker {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(17, 19, 24, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
}

.atelier-page .image-hero .cx-copy h1 {
  max-width: 520px;
  margin-top: 18px;
  font-size: clamp(3.25rem, 5.1vw, 5.3rem);
  line-height: 1.02;
}

.atelier-page .image-hero .cx-copy h1::after {
  width: 92px;
  height: 1px;
  margin-top: 24px;
  background: #111318;
}

.atelier-page .image-hero .cx-copy p {
  max-width: 500px;
  color: rgba(17, 19, 24, 0.66);
  font-size: 1rem;
  line-height: 1.8;
}

.element-preview {
  display: grid;
  grid-template-columns: repeat(5, 42px);
  gap: 8px;
  margin-top: 24px;
}

.element-preview span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 19, 24, 0.14);
  border-radius: 50%;
  background: rgba(250, 250, 250, 0.76);
  color: rgba(17, 19, 24, 0.48);
  font-weight: 900;
}

.element-preview .is-active {
  border-color: #111318;
  background: #111318;
  color: #fafafa;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.22);
}

.atelier-page .hero-flow {
  grid-template-columns: 1fr;
  width: min(430px, 100%);
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(17, 19, 24, 0.12);
}

.atelier-page .hero-flow span {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 46px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.atelier-page .hero-flow b {
  margin: 0;
  color: rgba(17, 19, 24, 0.46);
}

.atelier-page .cx-meta {
  margin-top: 26px;
}

.atelier-page .image-hero .cx-button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 0;
}

.atelier-page .image-hero .cx-button::after {
  border-radius: 0;
}

.atelier-page .hero-product-photo {
  align-self: center;
  isolation: isolate;
}

.atelier-page .hero-product-photo::before {
  content: "";
  position: absolute;
  inset: 10% 4% 8% 18%;
  z-index: -1;
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(244, 245, 247, 0.78);
}

.atelier-page .hero-product-photo img {
  width: min(650px, 100%);
  max-height: min(60svh, 620px);
  border-radius: 0;
  filter: drop-shadow(0 34px 48px rgba(17, 19, 24, 0.2));
}

.reading-dossier {
  position: absolute;
  left: clamp(10px, 3vw, 36px);
  bottom: clamp(18px, 4vw, 46px);
  z-index: 4;
  width: min(310px, calc(100% - 34px));
  padding: 20px;
  border: 1px solid rgba(250, 250, 250, 0.16);
  background: rgba(15, 23, 42, 0.92);
  color: #fafafa;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(18px);
}

.reading-dossier p {
  margin: 0 0 34px;
  color: rgba(250, 250, 250, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reading-dossier strong {
  display: block;
  color: #fafafa;
  font-size: 1.28rem;
  line-height: 1.2;
}

.reading-dossier span {
  display: block;
  margin-top: 10px;
  color: rgba(250, 250, 250, 0.64);
  font-size: 0.82rem;
  font-weight: 700;
}

.atelier-page .photo-caption {
  right: clamp(12px, 4vw, 42px);
  bottom: clamp(12px, 4vw, 42px);
  width: min(360px, calc(100% - 32px));
  border-radius: 0;
  background: rgba(250, 250, 250, 0.88);
}

@media (min-width: 760px) {
  .atelier-page .cx-hero.atelier-hero {
    grid-template-columns: minmax(390px, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(34px, 5vw, 72px);
  }
}

@media (max-width: 759px) {
  .atelier-page .cx-header {
    top: 0;
    width: 100%;
    min-height: 54px;
    border-left: 0;
    border-right: 0;
  }

  .atelier-page .cx-hero.atelier-hero {
    width: 100%;
    margin-top: 0;
    padding: 68px 16px 28px;
    border-left: 0;
    border-right: 0;
  }

  .atelier-page .hero-product-photo {
    order: -1;
    margin: 12px 0 22px;
  }

  .atelier-page .hero-product-photo::before {
    inset: 16px 0 20px 38px;
  }

  .atelier-page .hero-product-photo img {
    max-height: 232px;
    object-fit: cover;
  }

  .reading-dossier {
    left: 0;
    bottom: -10px;
    width: min(274px, calc(100% - 28px));
    padding: 13px;
  }

  .reading-dossier p {
    margin-bottom: 14px;
  }

  .reading-dossier strong {
    font-size: 0.98rem;
  }

  .atelier-page .photo-caption {
    display: none;
  }

  .atelier-page .image-hero .cx-copy h1 {
    max-width: 11em;
    margin-top: 14px;
    font-size: clamp(2.05rem, 9vw, 2.72rem);
    line-height: 1.06;
  }

  .atelier-page .image-hero .cx-copy p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .element-preview {
    grid-template-columns: repeat(5, 34px);
    gap: 6px;
    margin-top: 16px;
  }

  .element-preview span {
    width: 34px;
    height: 34px;
  }

  .atelier-page .cx-meta {
    margin-top: 18px;
  }

  .atelier-page .hero-flow {
    margin-top: 22px;
  }

  .atelier-page .cx-meta,
  .atelier-page .cx-button {
    order: initial;
  }
}

.cw-process,
.cw-reading-strip,
.cw-price {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  border-left: 1px solid rgba(17, 19, 24, 0.1);
  border-right: 1px solid rgba(17, 19, 24, 0.1);
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 0 1px, transparent 1px 100%) 0 0 / 88px 88px,
    #fafafa;
}

.cw-process {
  padding: clamp(58px, 8vw, 108px) clamp(22px, 4vw, 56px);
}

.cw-section-label {
  color: rgba(17, 19, 24, 0.48);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cw-process-grid {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(17, 19, 24, 0.1);
}

.cw-process-grid article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(250, 250, 250, 0.94);
}

.cw-process-grid span {
  color: rgba(17, 19, 24, 0.42);
  font-size: 0.86rem;
  font-weight: 950;
}

.cw-process-grid h2 {
  margin-top: 58px;
  color: #111318;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.1;
  font-weight: 950;
}

.cw-process-grid p {
  max-width: 320px;
  margin: 16px 0 0;
  color: rgba(17, 19, 24, 0.66);
  font-size: 0.98rem;
  line-height: 1.7;
}

.cw-reading-strip {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(58px, 8vw, 112px) clamp(22px, 4vw, 56px);
  border-top: 1px solid rgba(17, 19, 24, 0.1);
}

.cw-reading-strip h2 {
  max-width: 720px;
  margin-top: 16px;
  color: #111318;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.05;
  font-weight: 950;
}

.cw-output {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(17, 19, 24, 0.1);
}

.cw-output div {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: #111318;
  color: #fafafa;
}

.cw-output span {
  color: rgba(250, 250, 250, 0.48);
  font-size: 0.76rem;
  font-weight: 900;
}

.cw-output strong {
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.25;
}

.cw-price {
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(58px, 8vw, 112px) clamp(22px, 4vw, 56px);
  border-top: 1px solid rgba(17, 19, 24, 0.1);
  border-bottom: 1px solid rgba(17, 19, 24, 0.1);
}

.cw-price-copy h2 {
  max-width: 760px;
  margin-top: 16px;
  color: #111318;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
  line-height: 1.08;
  font-weight: 950;
}

.cw-price-copy p:not(.cw-section-label) {
  max-width: 560px;
  color: rgba(17, 19, 24, 0.66);
}

.cw-price-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(17, 19, 24, 0.1);
  background: rgba(250, 250, 250, 0.88);
}

.cw-price-card > strong {
  display: block;
  color: #111318;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 950;
}

.cw-price-card ul {
  display: grid;
  gap: 12px;
  padding: 24px 0 0;
  margin: 24px 0 0;
  border-top: 1px solid rgba(17, 19, 24, 0.1);
  color: rgba(17, 19, 24, 0.72);
  list-style: none;
}

.cw-price-card li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
}

.cw-price-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 10px;
  border-radius: 50%;
  background: #111318;
}

.cw-price-card .cx-button {
  margin-top: 28px;
  border-radius: 0;
}

@media (min-width: 760px) {
  .cw-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cw-reading-strip {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.74fr);
    align-items: end;
  }

  .cw-price {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.62fr);
    align-items: end;
  }
}

@media (max-width: 759px) {
  .cw-process,
  .cw-reading-strip,
  .cw-price {
    width: 100%;
    border-left: 0;
    border-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .cw-process-grid article {
    min-height: 210px;
  }

  .cw-process-grid h2 {
    margin-top: 42px;
  }

  .cw-output div {
    padding: 18px;
  }
}

/* Direction v3: product-first fashion jewelry with subtle modern nacre details. */
body.najeon-page {
  background:
    radial-gradient(circle at 84% 8%, rgba(190, 205, 220, 0.34), transparent 32rem),
    linear-gradient(180deg, #f7f8fa 0, #fafafa 42%, #eef1f5 100%);
  color: #111318;
}

.najeon-page .cx-header {
  top: 18px;
  width: min(1280px, calc(100% - 36px));
  min-height: 60px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.82);
  box-shadow: 0 20px 70px rgba(17, 19, 24, 0.08);
  backdrop-filter: blur(18px);
}

.najeon-page .cx-nav {
  color: rgba(17, 19, 24, 0.66);
  font-size: 0.82rem;
}

.najeon-page .cx-hero.najeon-hero {
  width: min(1380px, calc(100% - 28px));
  min-height: calc(100svh - 28px);
  margin-top: 14px;
  padding: 92px clamp(18px, 4vw, 58px) clamp(24px, 4vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(232, 236, 241, 0.32), transparent 38%),
    linear-gradient(90deg, rgba(17, 19, 24, 0.038) 0 1px, transparent 1px 100%) 0 0 / 124px 124px,
    linear-gradient(180deg, rgba(17, 19, 24, 0.03) 0 1px, transparent 1px 100%) 0 0 / 124px 124px,
    #fafafa;
  box-shadow: 0 34px 100px rgba(17, 19, 24, 0.12);
}

.najeon-page .hero-word {
  display: none;
}

.najeon-page .cx-copy {
  align-self: end;
  z-index: 3;
  max-width: 530px;
}

.najeon-page .image-hero .cx-kicker {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(17, 19, 24, 0.54);
  font-size: 0.78rem;
  font-weight: 950;
}

.najeon-page .image-hero .cx-copy h1 {
  max-width: 620px;
  margin-top: 14px;
  color: #111318;
  font-size: clamp(3.3rem, 5.4vw, 6.2rem);
  line-height: 0.98;
  font-weight: 950;
}

.najeon-page .image-hero .cx-copy h1::after {
  width: 86px;
  height: 1px;
  margin-top: 26px;
  background: linear-gradient(90deg, #111318, rgba(184, 192, 204, 0.1));
}

.najeon-page .image-hero .cx-copy p {
  max-width: 520px;
  color: rgba(17, 19, 24, 0.66);
  font-size: 1rem;
  line-height: 1.78;
}

.najeon-tone {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.najeon-tone span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.72);
  color: rgba(17, 19, 24, 0.66);
  font-size: 0.75rem;
  font-weight: 850;
}

.najeon-page .element-preview {
  grid-template-columns: repeat(5, 38px);
  gap: 8px;
  margin-top: 22px;
}

.najeon-page .element-preview span {
  width: 38px;
  height: 38px;
  border-color: rgba(17, 19, 24, 0.1);
  background: rgba(250, 250, 250, 0.68);
  color: rgba(17, 19, 24, 0.44);
}

.najeon-page .element-preview .is-active {
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(135deg, #111318, #16233b 64%, #6f819a);
  color: #fafafa;
}

.najeon-page .hero-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  width: min(520px, 100%);
  margin-top: 24px;
  border: 0;
}

.najeon-page .hero-flow span {
  display: inline-flex;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(17, 19, 24, 0.62);
  font-size: 0.82rem;
  box-shadow: none;
}

.najeon-page .hero-flow b {
  margin: 0 7px 0 0;
  color: #111318;
}

.najeon-page .cx-meta {
  margin-top: 26px;
}

.najeon-page .cx-meta strong {
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.najeon-page .image-hero .cx-button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
}

.najeon-page .image-hero .cx-button::after {
  border-radius: 50%;
}

.najeon-page .hero-product-photo {
  position: relative;
  align-self: center;
  z-index: 2;
  min-height: min(68svh, 720px);
}

.najeon-page .hero-product-photo::before {
  content: "";
  position: absolute;
  inset: 8% -2% 10% 9%;
  z-index: -1;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(250, 250, 250, 0.12), rgba(184, 192, 204, 0.22)),
    rgba(244, 245, 247, 0.66);
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.06);
}

.najeon-page .hero-product-photo img {
  width: min(760px, 100%);
  max-height: min(70svh, 760px);
  border-radius: 38px;
  object-fit: cover;
  filter: drop-shadow(0 36px 50px rgba(17, 19, 24, 0.22));
}

.nacre-chip {
  position: absolute;
  right: clamp(18px, 6vw, 84px);
  top: clamp(20px, 7vw, 92px);
  z-index: 5;
  width: clamp(70px, 9vw, 118px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.96), transparent 22%),
    conic-gradient(from 150deg, rgba(162, 180, 205, 0.82), rgba(246, 248, 250, 0.95), rgba(191, 216, 218, 0.74), rgba(244, 244, 249, 0.92), rgba(151, 166, 192, 0.72), rgba(248, 248, 252, 0.96));
  box-shadow: 0 22px 48px rgba(17, 19, 24, 0.16);
}

.reading-dossier {
  left: auto;
  right: clamp(12px, 4vw, 54px);
  bottom: clamp(12px, 4vw, 46px);
  width: min(360px, calc(100% - 28px));
  padding: 18px 20px;
  border: 1px solid rgba(250, 250, 250, 0.2);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.reading-dossier p {
  margin-bottom: 22px;
}

.najeon-page .photo-caption {
  display: none;
}

.najeon-page .cw-process,
.najeon-page .cw-reading-strip,
.najeon-page .cw-price {
  width: min(1380px, calc(100% - 28px));
  border-left: 1px solid rgba(17, 19, 24, 0.08);
  border-right: 1px solid rgba(17, 19, 24, 0.08);
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.03) 0 1px, transparent 1px 100%) 0 0 / 124px 124px,
    #fafafa;
}

.najeon-page .cw-process-grid {
  border-radius: 30px;
  overflow: hidden;
}

.najeon-page .cw-process-grid article,
.najeon-page .cw-price-card {
  background: rgba(250, 250, 250, 0.86);
}

.najeon-page .cw-output div {
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%),
    #111318;
}

.najeon-page .cw-price-card {
  border-radius: 30px;
}

.najeon-page .cw-price-card .cx-button {
  border-radius: 999px;
}

@media (min-width: 760px) {
  .najeon-page .cx-hero.najeon-hero {
    grid-template-columns: minmax(380px, 0.72fr) minmax(560px, 1.28fr);
    gap: clamp(24px, 5vw, 74px);
  }

  .najeon-page .hero-product-photo {
    grid-column: 2;
    grid-row: 1;
  }

  .najeon-page .cx-copy {
    grid-column: 1;
    grid-row: 1;
  }
}

@media (min-width: 760px) and (max-width: 1100px) {
  .najeon-page .cx-hero.najeon-hero {
    grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
    gap: 22px;
  }

  .najeon-page .image-hero .cx-copy h1 {
    font-size: clamp(2.65rem, 5vw, 3.9rem);
  }

  .najeon-page .hero-product-photo img {
    width: min(540px, 100%);
  }

  .reading-dossier {
    right: 18px;
    width: min(300px, calc(100% - 36px));
  }

  .nacre-chip {
    right: 22px;
    width: 78px;
  }
}

@media (max-width: 759px) {
  .najeon-page .cx-header {
    top: 0;
    width: 100%;
    min-height: 54px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .najeon-page .cx-hero.najeon-hero {
    width: 100%;
    min-height: auto;
    margin-top: 0;
    padding: 62px 16px 30px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .najeon-page .hero-product-photo {
    order: -1;
    min-height: 0;
    margin: 18px 0 24px;
  }

  .najeon-page .hero-product-photo::before {
    inset: 14px 0 16px 46px;
    border-radius: 28px;
  }

  .najeon-page .hero-product-photo img {
    width: 100%;
    max-height: 300px;
    border-radius: 26px;
  }

  .nacre-chip {
    width: 68px;
    right: 14px;
    top: 18px;
  }

  .reading-dossier {
    right: 10px;
    bottom: 10px;
    width: min(292px, calc(100% - 20px));
    padding: 14px 15px;
    border-radius: 18px;
  }

  .reading-dossier p {
    margin-bottom: 12px;
  }

  .reading-dossier strong {
    font-size: 1.02rem;
  }

  .najeon-page .image-hero .cx-copy h1 {
    max-width: 10.5em;
    font-size: clamp(2.04rem, 8.8vw, 2.72rem);
    line-height: 1.05;
  }

  .najeon-page .image-hero .cx-copy p {
    font-size: 0.95rem;
    line-height: 1.66;
  }

  .najeon-tone {
    margin-top: 16px;
  }

  .najeon-page .element-preview {
    grid-template-columns: repeat(5, 35px);
    gap: 7px;
    margin-top: 16px;
  }

  .najeon-page .element-preview span {
    width: 35px;
    height: 35px;
  }

  .najeon-page .hero-flow {
    margin-top: 18px;
  }

  .najeon-page .cx-meta {
    margin-top: 16px;
  }

  .najeon-page .image-hero .cx-button {
    width: 100%;
  }

  .najeon-page .cw-process,
  .najeon-page .cw-reading-strip,
  .najeon-page .cw-price {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }
}

/* Direction v4: full najeon inlay world, not a small pearl accent. */
body.najeon-page {
  background: #022c25;
  color: #f7f4ea;
}

.najeon-page main {
  background:
    radial-gradient(circle at 80% 10%, rgba(198, 238, 231, 0.13), transparent 28rem),
    linear-gradient(180deg, #022c25 0, #031f1b 100%);
}

.najeon-page .cx-header {
  top: 0;
  width: 100%;
  min-height: 68px;
  border: 0;
  border-bottom: 1px solid rgba(247, 244, 234, 0.14);
  border-radius: 0;
  background: rgba(2, 44, 37, 0.86);
  color: #f7f4ea;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.najeon-page .brand-lockup .brand-ko,
.najeon-page .brand-lockup .brand-en {
  color: #f7f4ea;
}

.najeon-page .brand-lockup .brand-en {
  opacity: 0.62;
}

.najeon-page .cx-nav {
  color: rgba(247, 244, 234, 0.72);
}

.najeon-page .cx-hero.najeon-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 94px clamp(18px, 6vw, 86px) clamp(28px, 5vw, 72px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(247, 244, 234, 0.045) 0 1px, transparent 1px 100%) 0 0 / 116px 116px,
    linear-gradient(180deg, rgba(247, 244, 234, 0.035) 0 1px, transparent 1px 100%) 0 0 / 116px 116px,
    radial-gradient(circle at 20% 24%, rgba(245, 255, 252, 0.06), transparent 24rem),
    #022c25;
  box-shadow: none;
}

.najeon-page .cx-hero.najeon-hero::before {
  content: "";
  position: absolute;
  right: clamp(-280px, -10vw, -120px);
  bottom: clamp(-340px, -18vw, -160px);
  z-index: 0;
  width: min(880px, 72vw);
  aspect-ratio: 980 / 1180;
  background: url("../images/najeon-inlay.svg") center / contain no-repeat;
  opacity: 0.94;
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.najeon-page .cx-hero.najeon-hero::after {
  content: "螺鈿";
  position: absolute;
  left: clamp(18px, 6vw, 86px);
  bottom: clamp(24px, 6vw, 88px);
  z-index: 0;
  color: rgba(247, 244, 234, 0.05);
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: 0;
  pointer-events: none;
}

.najeon-page .cx-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 560px;
}

.najeon-page .image-hero .cx-kicker {
  color: rgba(247, 244, 234, 0.68);
}

.najeon-page .image-hero .cx-copy h1 {
  max-width: 580px;
  color: #f7f4ea;
  font-size: clamp(3.6rem, 6.1vw, 7.4rem);
  line-height: 0.96;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.najeon-page .image-hero .cx-copy h1::after {
  background: linear-gradient(90deg, #f7f4ea, rgba(209, 241, 232, 0.12));
}

.najeon-page .image-hero .cx-copy p {
  max-width: 540px;
  color: rgba(247, 244, 234, 0.72);
}

.najeon-tone span {
  border-color: rgba(247, 244, 234, 0.18);
  background: rgba(247, 244, 234, 0.06);
  color: rgba(247, 244, 234, 0.76);
}

.najeon-page .element-preview span {
  border-color: rgba(247, 244, 234, 0.18);
  background: rgba(247, 244, 234, 0.06);
  color: rgba(247, 244, 234, 0.62);
}

.najeon-page .element-preview .is-active {
  border-color: rgba(247, 244, 234, 0.45);
  background:
    radial-gradient(circle at 38% 24%, rgba(255, 255, 255, 0.96), transparent 20%),
    conic-gradient(from 140deg, #d8f7ee, #fff5dc, #f0d8ff, #d7f5ff, #f7f4ea, #cfeee7);
  color: #022c25;
}

.najeon-page .hero-flow span {
  color: rgba(247, 244, 234, 0.72);
}

.najeon-page .hero-flow b {
  color: #f7f4ea;
}

.najeon-page .cx-meta strong {
  color: #f7f4ea;
}

.najeon-page .cx-meta span {
  border-color: rgba(247, 244, 234, 0.18);
  background: rgba(247, 244, 234, 0.06);
  color: rgba(247, 244, 234, 0.76);
}

.najeon-page .image-hero .cx-button {
  background: #f7f4ea;
  color: #022c25;
}

.najeon-page .image-hero .cx-button::after {
  background: #022c25;
  color: #f7f4ea;
}

.najeon-page .hero-product-photo {
  z-index: 2;
}

.najeon-page .hero-product-photo::before {
  inset: 10% -4% 4% 12%;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(247, 244, 234, 0.12), rgba(247, 244, 234, 0.02)),
    rgba(0, 0, 0, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(247, 244, 234, 0.14),
    0 30px 90px rgba(0, 0, 0, 0.28);
}

.najeon-page .hero-product-photo img {
  border-radius: 0;
  filter:
    saturate(0.9)
    contrast(1.04)
    drop-shadow(0 34px 64px rgba(0, 0, 0, 0.34));
}

.nacre-chip {
  display: none;
}

.reading-dossier {
  border: 1px solid rgba(247, 244, 234, 0.16);
  border-radius: 0;
  background: rgba(2, 29, 25, 0.88);
  color: #f7f4ea;
}

.reading-dossier::before {
  content: "";
  position: absolute;
  right: 18px;
  top: -30px;
  width: 86px;
  height: 42px;
  background:
    radial-gradient(circle at 40% 28%, rgba(255, 255, 255, 0.96), transparent 18%),
    linear-gradient(135deg, rgba(219, 250, 241, 0.95), rgba(255, 232, 249, 0.84), rgba(245, 240, 211, 0.92));
  clip-path: polygon(0 55%, 22% 15%, 68% 0, 100% 42%, 82% 82%, 34% 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.reading-dossier p,
.reading-dossier span {
  color: rgba(247, 244, 234, 0.62);
}

.reading-dossier strong {
  color: #f7f4ea;
}

.najeon-page .cw-process,
.najeon-page .cw-reading-strip,
.najeon-page .cw-price {
  width: 100%;
  border: 0;
  border-top: 1px solid rgba(247, 244, 234, 0.12);
  background:
    linear-gradient(90deg, rgba(247, 244, 234, 0.035) 0 1px, transparent 1px 100%) 0 0 / 116px 116px,
    #022c25;
  color: #f7f4ea;
}

.najeon-page .cw-process {
  position: relative;
  overflow: hidden;
}

.najeon-page .cw-process::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 20px;
  width: min(520px, 58vw);
  aspect-ratio: 980 / 1180;
  background: url("../images/najeon-inlay.svg") center / contain no-repeat;
  opacity: 0.24;
  pointer-events: none;
}

.najeon-page .cw-section-label {
  color: rgba(247, 244, 234, 0.58);
}

.najeon-page .cw-process-grid {
  position: relative;
  z-index: 1;
  border-color: rgba(247, 244, 234, 0.14);
  background: rgba(247, 244, 234, 0.14);
  border-radius: 0;
}

.najeon-page .cw-process-grid article,
.najeon-page .cw-price-card {
  background: rgba(247, 244, 234, 0.06);
}

.najeon-page .cw-process-grid span,
.najeon-page .cw-process-grid p,
.najeon-page .cw-price-copy p:not(.cw-section-label),
.najeon-page .cw-price-card ul {
  color: rgba(247, 244, 234, 0.68);
}

.najeon-page .cw-process-grid h2,
.najeon-page .cw-reading-strip h2,
.najeon-page .cw-price-copy h2,
.najeon-page .cw-price-card > strong {
  color: #f7f4ea;
}

.najeon-page .cw-output {
  border-color: rgba(247, 244, 234, 0.14);
  background: rgba(247, 244, 234, 0.14);
}

.najeon-page .cw-output div {
  background:
    linear-gradient(135deg, rgba(247, 244, 234, 0.08), transparent 36%),
    #031f1b;
}

.najeon-page .cw-price-card {
  border-color: rgba(247, 244, 234, 0.14);
  border-radius: 0;
}

.najeon-page .cw-price-card li::before {
  background:
    radial-gradient(circle at 38% 24%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(135deg, #d8f7ee, #f3ddff, #fff4d3);
}

.najeon-page .cw-price-card .cx-button {
  background: #f7f4ea;
  color: #022c25;
}

@media (min-width: 760px) {
  .najeon-page .cx-hero.najeon-hero {
    grid-template-columns: minmax(360px, 0.58fr) minmax(560px, 1.42fr);
    align-items: end;
  }
}

@media (max-width: 759px) {
  .najeon-page .cx-header {
    background: rgba(2, 44, 37, 0.92);
  }

  .najeon-page .cx-hero.najeon-hero {
    min-height: auto;
    padding: 58px 14px 26px;
    background:
      linear-gradient(90deg, rgba(247, 244, 234, 0.04) 0 1px, transparent 1px 100%) 0 0 / 88px 88px,
      linear-gradient(180deg, rgba(247, 244, 234, 0.03) 0 1px, transparent 1px 100%) 0 0 / 88px 88px,
      #022c25;
  }

  .najeon-page .cx-hero.najeon-hero::before {
    right: -190px;
    bottom: -260px;
    width: 620px;
    opacity: 0.48;
  }

  .najeon-page .cx-hero.najeon-hero::after {
    display: none;
  }

  .najeon-page .hero-product-photo {
    margin: 10px 0 16px;
  }

  .najeon-page .hero-product-photo img {
    max-height: 220px;
  }

  .najeon-page .reading-dossier {
    right: 0;
    bottom: 0;
    width: min(248px, calc(100% - 18px));
    padding: 10px 12px;
  }

  .najeon-page .reading-dossier::before {
    right: 12px;
    top: -20px;
    width: 58px;
    height: 30px;
  }

  .najeon-page .reading-dossier p {
    margin-bottom: 7px;
    font-size: 0.62rem;
  }

  .najeon-page .reading-dossier strong {
    font-size: 0.9rem;
  }

  .najeon-page .reading-dossier span {
    font-size: 0.72rem;
  }

  .najeon-page .image-hero .cx-copy {
    display: flex;
    flex-direction: column;
  }

  .najeon-page .cx-meta {
    order: 5;
    margin-top: 14px;
  }

  .najeon-page .image-hero .cx-button {
    order: 6;
    min-height: 46px;
    margin-top: 14px;
  }

  .najeon-page .hero-flow {
    order: 7;
    margin-top: 16px;
    gap: 8px 12px;
    font-size: 0.72rem;
  }

  .najeon-page .image-hero .cx-copy h1 {
    color: #f7f4ea;
    max-width: 11em;
    font-size: clamp(1.78rem, 7.5vw, 2.22rem);
    line-height: 1.08;
  }

  .najeon-page .image-hero .cx-copy p {
    margin-top: 14px;
    color: rgba(247, 244, 234, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .najeon-page .najeon-tone {
    margin-top: 12px;
    gap: 6px;
  }

  .najeon-page .najeon-tone span {
    min-height: 26px;
    padding: 0 9px;
    font-size: 0.68rem;
  }

  .najeon-page .element-preview {
    grid-template-columns: repeat(5, 30px);
    gap: 6px;
    margin-top: 12px;
  }

  .najeon-page .element-preview span {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }

  .najeon-page .cx-meta strong {
    font-size: 1.8rem;
  }

  .najeon-page .cx-meta span {
    min-height: 26px;
    padding: 0 9px;
    font-size: 0.68rem;
  }
}

/* Final renewal pass: najeon-inspired product hero with visible CTA. */
.najeon-page .image-hero .cx-copy {
  display: flex;
  flex-direction: column;
}

.najeon-page .cx-meta {
  order: 5;
}

.najeon-page .image-hero .cx-button {
  order: 6;
}

.najeon-page .hero-flow {
  order: 7;
}

@media (min-width: 760px) {
  .najeon-page .cx-hero.najeon-hero {
    grid-template-columns: minmax(410px, 0.78fr) minmax(520px, 1.22fr);
    min-height: calc(100vh - 68px);
    padding-top: clamp(44px, 4.6vw, 72px);
    padding-bottom: clamp(34px, 3.4vw, 54px);
    align-items: center;
  }

  .najeon-page .image-hero .cx-copy h1 {
    max-width: 660px;
    font-size: clamp(3rem, 4.35vw, 5.35rem);
    line-height: 1;
  }

  .najeon-page .image-hero .cx-copy p {
    max-width: 500px;
    margin-top: 22px;
  }

  .najeon-page .najeon-tone {
    margin-top: 22px;
  }

  .najeon-page .element-preview {
    margin-top: 18px;
  }

  .najeon-page .cx-meta {
    margin-top: 20px;
  }

  .najeon-page .cx-meta strong {
    font-size: clamp(2.2rem, 2.9vw, 3.45rem);
  }

  .najeon-page .image-hero .cx-button {
    width: fit-content;
    margin-top: 16px;
  }

  .najeon-page .hero-flow {
    margin-top: 16px;
  }
}
