:root {
  --blue: #0b82ff;
  --blue-dark: #0067d8;
  --black: #000;
  --ivory: #faf3eb;
  --panel: #fffdf8;
  --soft: #efe6dc;
  --line: #ded7cd;
  --muted: #5d5954;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--black);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", sans-serif;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 0 5.6vw;
  background: rgba(0, 0, 0, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 240ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  line-height: 1;
}

.brand-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.brand-mark {
  font-size: 24px;
  font-weight: 800;
}

.brand-sub {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding-bottom: 5px;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  transition: right 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  right: 0;
}

.nav-cta,
.primary-button,
.secondary-button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta,
.primary-button {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(11, 130, 255, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.primary-button:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 14px 32px rgba(11, 130, 255, 0.34);
}

.nav-cta:active,
.primary-button:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 6px 16px rgba(11, 130, 255, 0.3);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.section {
  padding: 96px 5.6vw;
}

.section-dark {
  background: var(--black);
  color: var(--ivory);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100vh - 76px);
  padding: 0;
}

.hero-panel {
  min-height: calc(100vh - 76px);
  padding: 8.8vw 5.6vw;
}

.hero-copy {
  position: relative;
  background: var(--ivory);
  color: var(--black);
}

.hero-concept {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  color: var(--ivory);
}

.hero-concept::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 130, 255, 0.32), transparent 70%);
  pointer-events: none;
  animation: heroGlowFloat 9s ease-in-out infinite;
}

.hero-concept > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *,
  .hero-concept > * {
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-copy > *:nth-child(1) {
    animation-delay: 0.05s;
  }

  .hero-copy > *:nth-child(2) {
    animation-delay: 0.16s;
  }

  .hero-copy > *:nth-child(3) {
    animation-delay: 0.27s;
  }

  .hero-copy > *:nth-child(4) {
    animation-delay: 0.38s;
  }

  .hero-concept > *:nth-child(1) {
    animation-delay: 0.16s;
  }

  .hero-concept > *:nth-child(2) {
    animation-delay: 0.27s;
  }

  .hero-concept > *:nth-child(3) {
    animation-delay: 0.38s;
  }

  .hero-concept > *:nth-child(4) {
    animation-delay: 0.48s;
  }

  .hero-concept > *:nth-child(5) {
    animation-delay: 0.56s;
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroGlowFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(26px) scale(1.06);
  }
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  left: 5.6vw;
  pointer-events: none;
}

.hero-copy::before {
  bottom: 48px;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(0, 0, 0, 0.22);
  border-radius: 999px;
}

.hero-copy::after {
  bottom: 74px;
  left: calc(5.6vw + 11px);
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  60%,
  100% {
    transform: translateY(14px);
    opacity: 0;
  }
}

.accent-text {
  position: relative;
  color: var(--blue);
}

.hero-copy .accent-text {
  background: linear-gradient(100deg, var(--blue-dark), #57b2ff 60%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-concept .accent-text {
  display: inline-block;
}

.hero-concept .accent-text::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: 8px;
  left: -4px;
  z-index: -1;
  height: 16px;
  border-radius: 4px;
  background: rgba(11, 130, 255, 0.3);
}

.eyebrow,
.concept-label {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 38px;
  font-size: clamp(46px, 5.6vw, 88px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.22;
}

.lead {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(21px, 1.75vw, 29px);
  line-height: 1.36;
  font-weight: 900;
}

.body-copy,
.hero-concept p,
.section-heading p,
.split-section > div:first-child + div p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.body-copy {
  max-width: 620px;
}

.hero-concept p {
  max-width: 780px;
  color: rgba(250, 243, 235, 0.82);
}

.hero-concept h2 {
  margin-bottom: 56px;
  color: var(--ivory);
  font-size: clamp(46px, 5.2vw, 82px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.concept-line {
  width: 86%;
  height: 2px;
  margin: 58px 0 34px;
  background: rgba(255, 255, 255, 0.22);
}

.concept-logo {
  width: min(360px, 60%);
  height: auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 72px;
  align-items: start;
  background-color: var(--ivory);
  background-image: radial-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
}

.rate-section {
  background-color: var(--ivory);
  background-image: radial-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
}

.insight-grid,
.service-grid,
.content-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.insight-grid article,
.service-grid article,
.content-grid article,
.timeline article,
.package-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.insight-grid article,
.service-grid article,
.timeline article {
  min-height: 166px;
  padding: 24px;
  transition: background 240ms ease, transform 240ms ease;
}

.insight-grid span,
.service-grid span,
.timeline span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

.insight-grid p,
.service-grid p,
.timeline p,
.content-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 40px;
}

.section-heading.compact {
  max-width: 1180px;
}

.service-section {
  background: var(--ivory);
}

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

.included-bar {
  margin-top: 22px;
  border-radius: 18px;
  padding: 20px 26px;
  background: var(--soft);
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.content-section {
  background: #fff8f1;
}

.package-section,
.process-section {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 72px), #fff8f1;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.package-grid article {
  position: relative;
  min-height: 218px;
  padding: 22px;
  overflow: hidden;
}

.package-grid article::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(11, 130, 255, 0.11);
}

.package-grid .featured {
  border-color: var(--blue);
  box-shadow: 0 14px 34px rgba(11, 130, 255, 0.13);
}

.package-grid h3 {
  color: var(--blue);
  font-size: 25px;
}

.package-grid strong {
  display: block;
  margin: 20px 0 12px;
  font-size: 28px;
  font-weight: 900;
}

.package-grid p,
.package-grid span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.rate-slider-wrap {
  position: relative;
}

.rate-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 18px;
  width: 64px;
  background: linear-gradient(to right, transparent, var(--ivory) 72%);
  pointer-events: none;
}

.rate-slider {
  display: grid;
  grid-auto-columns: minmax(260px, 1fr);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  touch-action: pan-x;
  padding: 4px 2px 18px;
  scrollbar-color: var(--blue) rgba(0, 0, 0, 0.08);
}

.rate-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.rate-slider::-webkit-scrollbar {
  display: none;
}

.rate-slider article {
  position: relative;
  min-height: 245px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--panel);
  scroll-snap-align: start;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .rate-slider article:hover {
    transform: translateY(-6px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(11, 130, 255, 0.16);
  }
}

.rate-slider article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(11, 130, 255, 0.1);
}

.rate-slider span {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(11, 130, 255, 0.12);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.rate-slider h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.rate-slider p {
  min-height: 52px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.rate-slider strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--black);
  font-size: 26px;
  font-weight: 900;
}

/* Shared horizontal-scroll mechanics for card sections (package/content/creator) */
.hslider {
  display: grid;
  grid-auto-columns: minmax(240px, 1fr);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  touch-action: pan-x;
  padding: 4px 2px 18px;
  scrollbar-color: var(--blue) rgba(0, 0, 0, 0.08);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hslider::-webkit-scrollbar {
  display: none;
}

.hslider > article {
  scroll-snap-align: start;
}

.hslider-wrap {
  position: relative;
}

.hslider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 18px;
  width: 64px;
  background: linear-gradient(to right, transparent, var(--fade, var(--ivory)) 72%);
  pointer-events: none;
}

.package-section .hslider-wrap::after,
.content-section .hslider-wrap::after {
  --fade: #fff8f1;
}

.creator-section .hslider-wrap::after {
  --fade: #000;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 800;
  font-size: 15px;
}

.detail-link::after {
  content: "→";
  transition: transform 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .detail-link:hover::after {
    transform: translateX(4px);
  }
}

.package-slider article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--panel);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .package-slider article:hover {
    transform: translateY(-6px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(11, 130, 255, 0.14);
  }
}

.package-slider h3 {
  margin-bottom: 0;
  color: var(--blue);
  font-size: 24px;
}

.package-slider strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 30px;
  font-weight: 900;
}

.package-slider article > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
}

.package-slider article > span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.package-slider article.featured {
  border-color: var(--black);
  background: var(--black);
  color: var(--ivory);
  box-shadow: 0 20px 44px rgba(11, 130, 255, 0.22);
}

@media (hover: hover) and (pointer: fine) {
  .package-slider article.featured:hover {
    border-color: var(--blue);
  }
}

.package-slider article.featured > p,
.package-slider article.featured > span {
  color: rgba(250, 243, 235, 0.72);
}

.content-slider article {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--panel);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .content-slider article:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
  }
}

.content-slider b {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(11, 130, 255, 0.12);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.content-slider span {
  display: block;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

.content-slider p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.creator-slider article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 240ms ease, transform 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .creator-slider article:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
  }
}

.creator-slider b {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 22px;
}

.creator-slider span {
  display: block;
  margin-bottom: 20px;
  color: rgba(250, 243, 235, 0.7);
  font-size: 14px;
}

.creator-slider p {
  margin: 0;
  color: var(--ivory);
  font-size: 24px;
  font-weight: 900;
}

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

.content-grid article {
  padding: 24px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.content-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

.content-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.creator-section {
  background: var(--black);
  color: var(--ivory);
}

.creator-section .section-heading p {
  color: rgba(250, 243, 235, 0.72);
}

.creator-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.creator-list article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.creator-list b {
  display: block;
  color: var(--blue);
  font-size: 22px;
}

.creator-list span {
  display: block;
  margin: 14px 0 22px;
  color: rgba(250, 243, 235, 0.7);
}

.creator-list p {
  margin-bottom: 0;
  color: var(--ivory);
  font-size: 22px;
  font-weight: 900;
}

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

/* Section-specific rhythm: each block should feel like its own sales page moment. */
.split-section > div:first-child {
  position: sticky;
  top: 112px;
}

.insight-grid {
  gap: 0;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.insight-grid article {
  min-height: 196px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 30px 28px 30px 0;
}

.insight-grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.insight-grid article:nth-child(even) {
  padding-left: 28px;
}

.insight-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.insight-grid h3,
.timeline h3 {
  font-size: 21px;
}

.service-section {
  background: var(--black);
  color: var(--ivory);
}

.service-section .section-heading p {
  color: rgba(250, 243, 235, 0.72);
}

.service-grid {
  gap: 0;
  border-top: 1px solid rgba(250, 243, 235, 0.18);
  border-bottom: 1px solid rgba(250, 243, 235, 0.18);
}

.service-grid article {
  min-height: 270px;
  border: 0;
  border-right: 1px solid rgba(250, 243, 235, 0.18);
  border-radius: 0;
  background: transparent;
  padding: 30px 24px 34px;
  transition: background 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-grid article:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.service-grid article:last-child {
  border-right: 0;
}

.service-grid h3 {
  color: var(--ivory);
  font-size: 22px;
}

.service-grid p {
  color: rgba(250, 243, 235, 0.7);
}

.included-bar {
  background: var(--ivory);
  color: var(--black);
}

.package-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid var(--black);
}

.package-grid article {
  display: grid;
  grid-template-columns: 0.95fr 0.8fr 1.1fr 1.35fr;
  align-items: center;
  gap: 22px;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 24px 4px;
  overflow: visible;
}

.package-grid article::after {
  content: none;
}

.package-grid .featured {
  position: relative;
  margin-inline: -18px;
  border-radius: 18px;
  padding-inline: 22px;
  background: var(--black);
  color: var(--ivory);
  box-shadow: 0 20px 44px rgba(11, 130, 255, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .package-grid .featured:hover {
    transform: scale(1.008);
    box-shadow: 0 26px 54px rgba(11, 130, 255, 0.3);
  }
}

.package-grid .featured p,
.package-grid .featured span {
  color: rgba(250, 243, 235, 0.72);
}

.badge-best {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.package-grid h3 {
  margin-bottom: 0;
  color: var(--blue);
  font-size: 22px;
}

.package-grid strong {
  margin: 0;
  font-size: 24px;
}

.package-grid p,
.package-grid span {
  font-size: 14px;
}

.content-grid {
  grid-template-columns: 1.08fr 0.92fr 1fr;
  grid-auto-rows: minmax(156px, auto);
  gap: 14px;
}

.content-grid article {
  display: flex;
  min-height: 172px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0;
  padding: 24px;
}

.content-grid article:nth-child(1) {
  grid-row: span 2;
  background: var(--black);
  color: var(--ivory);
}

.content-grid article:nth-child(1) p {
  color: rgba(250, 243, 235, 0.72);
}

.content-grid article:nth-child(4) {
  background: var(--ivory);
}

.content-grid article:nth-child(6) {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--blue), #0056c9);
  color: var(--white);
}

.content-grid article:nth-child(6) span {
  background: var(--white);
  color: var(--blue);
}

.content-grid article:nth-child(6) p {
  color: rgba(255, 255, 255, 0.82);
}

.creator-list {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(250, 243, 235, 0.2);
}

.creator-list article {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr;
  align-items: center;
  gap: 20px;
  border: 0;
  border-bottom: 1px solid rgba(250, 243, 235, 0.2);
  border-radius: 0;
  background: transparent;
  padding: 24px 0;
}

.creator-list span {
  margin: 0;
}

.creator-list p {
  text-align: right;
}

.timeline {
  position: relative;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding-top: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.timeline article {
  position: relative;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 16px 0 0;
}

.timeline article::before {
  content: "";
  display: block;
  width: 29px;
  height: 29px;
  margin-bottom: 26px;
  border: 8px solid var(--ivory);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

/* Information-type layouts */
.decision-flow {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 0;
}

.decision-flow::before {
  content: "";
  position: absolute;
  top: 48px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: var(--black);
}

.decision-flow article,
.decision-flow article:nth-child(even),
.decision-flow article:nth-child(odd) {
  position: relative;
  min-height: 0;
  border: 0;
  padding: 0 18px 0 0;
  transition: transform 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .decision-flow article:hover {
    transform: translateY(-4px);
  }

  .decision-flow article:hover span {
    border-color: var(--blue);
    box-shadow: 0 10px 24px rgba(11, 130, 255, 0.18);
  }
}

.decision-flow span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 24px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--blue);
  font-size: 18px;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.decision-flow h3 {
  font-size: 24px;
}

.service-scope {
  grid-template-columns: 0.92fr 1.12fr 1.12fr 0.92fr;
  border: 0;
  gap: 14px;
}

.service-scope span {
  margin-bottom: 44px;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: rgba(250, 243, 235, 0.14);
  -webkit-text-stroke: 1.5px rgba(250, 243, 235, 0.4);
}

.included-strip {
  display: flex;
  align-items: center;
  min-height: 70px;
  border-radius: 0;
  border-left: 8px solid var(--blue);
}

.package-table {
  position: relative;
  display: block;
  border-top: 2px solid var(--black);
}

.package-table::before {
  content: "패키지     월 업로드     기본 구성     권장 상황";
  display: grid;
  grid-template-columns: 0.95fr 0.8fr 1.1fr 1.35fr;
  gap: 22px;
  padding: 0 4px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  white-space: pre;
}

.package-table article,
.package-table .featured {
  display: grid;
  grid-template-columns: 0.95fr 0.8fr 1.1fr 1.35fr;
  margin: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 18px 4px;
  background: transparent;
  color: var(--black);
  transition: background 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .package-table article:not(.featured):hover {
    background: rgba(11, 130, 255, 0.05);
  }
}

.package-table .featured {
  border-bottom-color: var(--black);
  background: var(--black);
  color: var(--ivory);
  padding-right: 18px;
  padding-left: 18px;
}

.package-table article h3,
.package-table article strong,
.package-table article p,
.package-table article span {
  margin: 0;
}

.package-table article strong {
  font-size: 22px;
}

.content-matrix {
  border-top: 2px solid var(--black);
}

.matrix-head,
.content-matrix article {
  display: grid;
  grid-template-columns: 0.42fr 0.8fr 1.35fr;
  align-items: start;
  gap: 24px;
}

.matrix-head {
  padding: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.content-matrix article {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  transition: background 220ms ease;
}

.content-matrix article:hover {
  background: rgba(11, 130, 255, 0.04);
}

.content-matrix article:hover b {
  transform: scale(1.06);
}

.content-matrix b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
  transition: transform 220ms ease;
}

.content-matrix span {
  color: var(--black);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.content-matrix p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.creator-table {
  border-top: 1px solid rgba(250, 243, 235, 0.22);
}

.creator-table::before {
  content: "구분\A 팔로워 규모\A 예상 비용";
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr;
  gap: 20px;
  padding: 0 0 16px;
  color: rgba(250, 243, 235, 0.55);
  font-size: 13px;
  font-weight: 900;
  white-space: pre;
}

.creator-table article {
  min-height: 70px;
  padding: 18px 0;
  transition: background 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .creator-table article:hover {
    background: rgba(255, 255, 255, 0.04);
  }
}

.process-section .timeline {
  counter-reset: step;
}

.process-section .timeline article {
  padding-right: 20px;
}

.process-section .timeline span {
  display: none;
}

.process-section .timeline article::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--ivory);
  box-shadow: none;
  transition: box-shadow 240ms ease, transform 240ms ease;
  font-size: 14px;
  font-weight: 900;
}

@media (hover: hover) and (pointer: fine) {
  .process-section .timeline article:hover::before {
    box-shadow: 0 0 0 6px rgba(11, 130, 255, 0.24);
    transform: translateY(-2px);
  }
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 82px;
  padding-bottom: 168px;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  height: 640px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 130, 255, 0.22), transparent 70%);
  pointer-events: none;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta div {
  max-width: 980px;
}

.final-cta p:not(.eyebrow) {
  color: rgba(250, 243, 235, 0.78);
  font-size: 19px;
  line-height: 1.62;
}

.final-cta .primary-button {
  margin-top: 32px;
}

.floating-card {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  width: min(330px, calc(100vw - 48px));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 24px;
  background: var(--black);
  color: var(--ivory);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, opacity 220ms ease;
}

.floating-card.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
}

.floating-card p {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.floating-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(250, 243, 235, 0.78);
  line-height: 1.5;
}

.floating-card .primary-button {
  width: 100%;
}

.floating-close,
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.mobile-sticky {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px);
  overflow-y: auto;
}

.modal-backdrop[hidden] {
  display: none;
}

.contact-modal {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 28px;
  padding: 42px;
  background: var(--ivory);
  color: var(--black);
  box-shadow: var(--shadow);
}

.contact-modal h2 {
  margin-bottom: 16px;
  font-size: 36px;
}

.contact-modal p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.modal-close {
  background: var(--black);
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 16px;
  background: var(--panel);
  color: var(--black);
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 130, 255, 0.14);
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: var(--muted) !important;
  font-size: 14px;
  font-weight: 700 !important;
  line-height: 1.5;
}

.checkbox-label input {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  accent-color: var(--blue);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--blue) !important;
  font-weight: 900;
}

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

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hero-copy::before,
  .hero-copy::after {
    display: none;
  }

  .service-grid,
  .service-scope,
  .content-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }

  .decision-flow::before {
    display: none;
  }

  .split-section > div:first-child {
    position: static;
  }

  .package-grid article {
    grid-template-columns: 1fr 1fr;
  }

  .content-grid article:nth-child(1),
  .content-grid article:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .creator-list article {
    grid-template-columns: 1fr 0.8fr 1fr;
  }

  .timeline {
    row-gap: 34px;
  }

  .timeline::before {
    display: none;
  }

  .matrix-head,
  .content-matrix article {
    grid-template-columns: 0.38fr 0.78fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 0 20px;
  }

  .brand-sub,
  .nav-cta {
    display: none;
  }

  .section {
    padding: 64px 20px;
  }

  .hero-panel {
    padding: 66px 20px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(38px, 12vw, 52px);
  }

  h2 {
    font-size: clamp(30px, 8.8vw, 42px);
  }

  h3 {
    font-size: 21px;
  }

  .lead {
    font-size: 21px;
  }

  .body-copy,
  .hero-concept p,
  .section-heading p,
  .split-section > div:first-child + div p {
    font-size: 16px;
  }

  .hero-concept h2 {
    margin-bottom: 34px;
    font-size: clamp(42px, 13vw, 58px);
  }

  .package-grid article {
    min-height: 184px;
    padding: 20px;
  }

  .package-grid strong {
    margin: 14px 0 8px;
    font-size: 25px;
  }

  .insight-grid article,
  .service-grid article,
  .timeline article,
  .content-grid article,
  .creator-list article {
    padding: 20px;
  }

  .service-grid,
  .service-scope,
  .content-grid,
  .timeline,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .decision-flow {
    gap: 0;
  }

  .decision-flow article,
  .decision-flow article:nth-child(even),
  .decision-flow article:nth-child(odd) {
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .decision-flow article:last-child {
    border-bottom: 0;
  }

  .decision-flow span {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    grid-row: span 2;
    font-size: 14px;
  }

  .decision-flow h3 {
    margin-bottom: 6px;
  }

  .insight-grid article,
  .insight-grid article:nth-child(even) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .insight-grid article:last-child {
    border-bottom: 0;
  }

  .service-grid {
    gap: 12px;
    border: 0;
  }

  .service-grid article {
    min-height: 0;
    border: 1px solid rgba(250, 243, 235, 0.16);
    border-radius: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.05);
  }

  .service-scope {
    gap: 0;
  }

  .service-scope article {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 22px 0;
    border-bottom: 1px solid rgba(250, 243, 235, 0.18);
  }

  .service-scope article:last-child {
    border-bottom: 0;
  }

  .service-scope span {
    margin-bottom: 18px;
    font-size: 44px;
  }

  .package-grid {
    gap: 12px;
    border-top: 0;
  }

  .package-grid article,
  .package-grid .featured {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-inline: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    background: var(--panel);
    color: var(--black);
  }

  .package-table {
    border-top: 0;
  }

  .package-table::before {
    display: none;
  }

  .package-table article,
  .package-table .featured {
    position: relative;
    padding-top: 48px;
  }

  .package-table article h3::before {
    content: "패키지";
  }

  .package-table article strong::before {
    content: "월 업로드";
  }

  .package-table article p::before {
    content: "기본 구성";
  }

  .package-table article span::before {
    content: "권장 상황";
  }

  .package-table article h3::before,
  .package-table article strong::before,
  .package-table article p::before,
  .package-table article span::before {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
  }

  .package-table .featured h3::before,
  .package-table .featured strong::before,
  .package-table .featured p::before,
  .package-table .featured span::before {
    color: rgba(250, 243, 235, 0.48);
  }

  .package-grid .featured {
    border-color: var(--black);
    background: var(--black);
    color: var(--ivory);
  }

  .package-grid .featured p,
  .package-grid .featured span {
    color: rgba(250, 243, 235, 0.72);
  }

  .content-grid {
    gap: 12px;
  }

  .content-grid article {
    min-height: 0;
    border-radius: 18px;
  }

  .content-matrix {
    border-top: 0;
  }

  .matrix-head {
    display: none;
  }

  .content-matrix article {
    grid-template-columns: 1fr;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    background: var(--panel);
  }

  .content-matrix article + article {
    margin-top: 12px;
  }

  .content-matrix b {
    width: auto;
    height: auto;
    justify-self: start;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .content-matrix span {
    font-size: 21px;
  }

  .creator-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .creator-table::before {
    display: none;
  }

  .creator-list p {
    text-align: left;
  }

  .timeline {
    gap: 0;
    padding-top: 0;
  }

  .timeline article {
    padding: 0 0 28px;
  }

  .timeline article::before {
    margin-bottom: 12px;
  }

  .rate-slider {
    grid-auto-columns: minmax(235px, 76vw);
    margin-inline: 0;
    padding: 4px 20px 18px;
    scroll-padding-inline: 20px;
  }

  .rate-slider-wrap {
    margin-inline: -20px;
  }

  .rate-slider-wrap::after {
    width: 40px;
  }

  .rate-slider article {
    min-height: 220px;
    padding: 20px;
  }

  .hslider {
    grid-auto-columns: minmax(235px, 76vw);
    padding: 4px 20px 18px;
    scroll-padding-inline: 20px;
  }

  .hslider-wrap {
    margin-inline: -20px;
  }

  .hslider-wrap::after {
    width: 40px;
  }

  .package-slider article,
  .creator-slider article,
  .content-slider article {
    padding: 20px;
  }

  .rate-slider strong {
    font-size: 23px;
  }

  .final-cta {
    display: block;
    padding-bottom: 110px;
  }

  .final-cta .primary-button {
    width: 100%;
    margin-top: 28px;
  }

  .floating-card {
    display: none;
  }

  .mobile-sticky {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 35;
    display: block;
    min-height: 56px;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(11, 130, 255, 0.34);
  }

  .contact-modal {
    max-height: calc(100dvh - 24px);
    padding: 28px 22px;
  }

  .modal-backdrop {
    padding: 12px 14px;
  }

  .contact-modal h2 {
    font-size: 32px;
  }

  .lead-form {
    gap: 12px;
    margin-top: 20px;
  }

  .lead-form input,
  .lead-form select {
    min-height: 50px;
  }
}
