:root {
  --bg: #ffdd87;
  --text: #2f2f2f;
  --muted: rgba(43, 43, 43, 0.88);
  --btn-bg: #1a1a1a;
  --btn-bg-hover: #2a2a2a;
  --btn-text: rgba(255, 255, 255, 0.94);
  --card: rgba(255, 247, 214, 0.78);
  --line: rgba(47, 47, 47, 0.12);
}

* { box-sizing: border-box; }

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Noto Sans KR", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 221, 135, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px clamp(16px, 4vw, 28px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.site-brand {
  font-family: "Baloo", "Baloo 2", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.site-brand:hover {
  opacity: 0.85;
}

.site-nav-toggle {
  display: none;
  width: 38px;
  height: 34px;
  border: 1px solid rgba(47, 47, 47, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  padding: 7px 8px;
  cursor: pointer;
}

.site-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(47, 47, 47, 0.86);
  margin: 0;
}

.site-nav-toggle span + span {
  margin-top: 5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  margin-left: auto;
}

.site-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(47, 47, 47, 0.8);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 120ms ease, background 120ms ease;
}

.site-nav__link:hover {
  color: var(--text);
  background: rgba(47, 47, 47, 0.08);
}

.site-nav__link--active {
  color: var(--text);
  background: rgba(47, 47, 47, 0.14);
}

.site-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  z-index: 60;
}

.site-lang__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(47, 47, 47, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.45);
  color: rgba(47, 47, 47, 0.86);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.site-lang__trigger:hover {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(47, 47, 47, 0.24);
}

.site-lang__icon {
  width: 14px;
  height: 14px;
  color: rgba(47, 47, 47, 0.72);
}

.site-lang__current {
  color: rgba(47, 47, 47, 0.88);
}

.site-lang__chevron {
  font-size: 0.72rem;
  color: rgba(47, 47, 47, 0.64);
  transition: transform 180ms ease;
}

.site-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  padding: 6px;
  border: 1px solid rgba(47, 47, 47, 0.12);
  border-radius: 12px;
  background: rgba(255, 251, 239, 0.98);
  box-shadow: 0 12px 28px rgba(36, 32, 22, 0.18);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity 170ms ease, transform 190ms ease, visibility 0ms linear 190ms;
}

.site-lang.is-open .site-lang__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity 170ms ease, transform 190ms ease, visibility 0ms linear 0ms;
}

.site-lang.is-open .site-lang__chevron {
  transform: rotate(180deg);
}

.site-lang__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 9px 10px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.76);
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
}

.site-lang__btn:hover {
  color: var(--text);
  background: rgba(47, 47, 47, 0.07);
}

.site-lang__btn--active {
  color: var(--text);
  background: rgba(47, 47, 47, 0.12);
}

.page {
  flex: 1;
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page--home {
  display: block;
  min-height: auto;
}

.hero {
  position: relative;
  width: min(1024px, 100vw);
  aspect-ratio: 1024 / 567;
  overflow: hidden;
  background: var(--bg);
}

.page--home .hero {
  margin: 0 auto;
  padding-bottom: clamp(100px, 11vw, 140px);
}

.hero__art {
  position: absolute;
  right: clamp(24px, 5vw, 70px);
  bottom: 94px;
  width: min(42%, 428px);
  max-height: 96%;
  height: auto;
  transform: translateY(15%);
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.hero__content {
  position: absolute;
  inset: 0;
  padding: 0 clamp(24px, 6vw, 118px);
  display: flex;
  align-items: center;
  transform: translateY(15%);
}

.hero__left {
  width: min(520px, 54%);
  transform: translateY(-12px);
}

.hero__title {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  font-family: "Baloo", "Baloo 2", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(62px, 7.15vw, 90px);
  letter-spacing: -0.01em;
  line-height: 0.95;
}

.hero__subtitle {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 500;
  font-size: clamp(22px, 1.43vw, 35px);
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.hero__subtitle-line2 {
  display: block;
  margin-top: 0.2em;
}

html[lang="ko"] .hero__subtitle {
  word-break: keep-all;
}

.hero__actions {
  margin-top: clamp(36px, 3.4vw, 48px);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero__actions--mobile {
  display: none;
}

.app-preview {
  width: 100%;
  margin-top: 0;
  padding: 100px 0 120px;
  background: var(--bg);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.app-preview__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 36px);
}

.app-preview__text-area {
  text-align: center;
}

.app-preview__title {
  margin: 0 0 12px;
  color: #1a1a1a;
  font-size: clamp(2.25rem, 4.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.app-preview__subtitle {
  margin: 0 0 40px;
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(1rem, 1.7vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.app-preview__track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.app-preview__track::-webkit-scrollbar {
  display: none;
}

.app-preview__slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(16px, 4vw, 28px);
  scroll-snap-align: center;
}

.app-preview__slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(92vw, 540px);
}

.app-preview__slide-title {
  margin: 6px 0 12px;
  font-size: clamp(1.1rem, 2.16vw, 1.2rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.4;
}

.app-preview__image-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f1efed;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.app-preview__image {
  width: min(100%, 420px);
  max-width: 420px;
  height: auto;
  aspect-ratio: 3 / 5;
  border-radius: 18px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.app-preview__dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.app-preview__dot {
  width: 8px;
  height: 8px;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.app-preview__dot.is-active {
  width: 24px;
  height: 8px;
  background: #1a1a1a;
}

.app-preview__cta-wrap {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.app-preview__cta {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 16px 28px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.app-preview__cta:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.03);
}

.app-preview__cta:active {
  transform: scale(0.97);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: transform 120ms ease, background-color 150ms ease;
}

.btn:hover {
  background-color: var(--btn-bg-hover);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
  background-color: var(--btn-bg);
}

.hero .btn {
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.hero .btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.03);
}

.hero .btn:active {
  transform: scale(0.97);
}

.content-page {
  flex: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px) clamp(20px, 5vw, 32px) clamp(32px, 6vw, 56px);
}

.content-card {
  background: var(--card);
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 14px;
  padding: clamp(18px, 3vw, 26px);
}

.content-page__title {
  margin: 0 0 16px;
  font-family: "Baloo", "Baloo 2", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
}

.content-page__subtitle {
  margin: -4px 0 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.68);
}

.content-page__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(47, 47, 47, 0.9);
}

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

.content-page__section {
  margin-top: 24px;
}

.content-page__heading {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.content-page__email {
  color: inherit;
  font-weight: 600;
  text-underline-offset: 3px;
}

.content-table-wrap {
  margin-top: 10px;
  width: 100%;
  overflow-x: auto;
}

.content-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(47, 47, 47, 0.14);
}

.content-table th,
.content-table td {
  padding: 12px 14px;
  border: 1px solid rgba(47, 47, 47, 0.14);
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.5;
}

.content-table th {
  background: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.content-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-left: 3px solid rgba(47, 47, 47, 0.3);
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.96rem;
  line-height: 1.65;
}

.content-list {
  margin: 10px 0 0;
  padding-left: 20px;
}

.content-list li {
  margin: 6px 0;
  line-height: 1.65;
}

.content-ordered-list {
  margin: 10px 0 0;
  padding-left: 22px;
}

.content-ordered-list li {
  margin: 6px 0;
  line-height: 1.65;
}

.content-page__effective {
  margin: 28px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(47, 47, 47, 0.15);
  font-size: 0.95rem;
  font-weight: 600;
}

.support-layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(16px, 3vw, 26px);
  align-items: start;
}

.support-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-info__block {
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid rgba(47, 47, 47, 0.1);
  background: rgba(255, 255, 255, 0.4);
}

.support-info__block .content-page__heading {
  margin-bottom: 6px;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(47, 47, 47, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.support-form__label {
  margin-top: 4px;
  font-size: 0.93rem;
  font-weight: 700;
  color: rgba(47, 47, 47, 0.86);
}

.support-form__input,
.support-form__textarea {
  width: 100%;
  border: 1px solid rgba(47, 47, 47, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: rgba(47, 47, 47, 0.95);
  padding: 11px 12px;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
}

.support-form__textarea {
  min-height: 132px;
  resize: vertical;
}

.support-form__input:focus,
.support-form__textarea:focus {
  outline: 2px solid rgba(47, 47, 47, 0.2);
  outline-offset: 1px;
  border-color: rgba(47, 47, 47, 0.32);
}

.support-form__submit {
  margin-top: 8px;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  background: var(--btn-bg);
  color: var(--btn-text);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease;
}

.support-form__submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.support-form__submit:active {
  filter: brightness(0.98);
  transform: translateY(0);
}

.support-form__helper {
  margin: 2px 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(47, 47, 47, 0.72);
}

/* Support page: remove boxed/card containers for a flat layout */
body[data-page="support"] .content-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

body[data-page="support"] .support-layout {
  margin-top: 24px;
  align-items: start;
}

body[data-page="support"] .support-info {
  gap: 20px;
}

body[data-page="support"] .support-info__block {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="support"] .support-form {
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.test-intro {
  min-height: 100vh;
  padding: clamp(24px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.test-intro__content {
  width: min(740px, 100%);
  text-align: center;
}

.test-intro__title {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(2rem, 5.5vw, 3rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.test-intro__subtitle {
  margin: 14px 0 0;
  color: rgba(26, 26, 26, 0.68);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  line-height: 1.55;
}

.test-intro__cta {
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 16px 30px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.test-intro__cta:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.03);
}

.test-intro__cta:active {
  transform: scale(0.97);
}

.ai-chat {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f4efe6;
  color: #1a1a1a;
  flex: 1;
  min-height: 0;
}

.ai-chat__header {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 28px) 16px;
  text-align: center;
  border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.ai-chat__title {
  margin: 0;
  font-size: clamp(1.45rem, 3.8vw, 1.9rem);
  font-weight: 800;
}

.ai-chat__subtitle {
  margin: 8px 0 0;
  font-size: clamp(0.92rem, 2.2vw, 1rem);
  color: rgba(26, 26, 26, 0.6);
}

.ai-chat__messages {
  flex: 1;
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 24px 16px 126px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.ai-chat__progress {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 10px clamp(14px, 4vw, 24px) 2px;
}

.ai-chat__progress-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.ai-chat__progress-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.64);
}

.ai-chat__progress-value {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.48);
  margin-left: auto;
}

.ai-chat__progress-track {
  height: 6px;
  border-radius: 999px;
  background: #eee;
  overflow: hidden;
}

.ai-chat__progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: #d6c6a8;
  transition: width 340ms ease;
}

.ai-chat__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: aiMessageFadeIn 340ms ease both;
}

.ai-chat__row + .ai-chat__row {
  margin-top: 18px;
}

.ai-chat__row--quick {
  margin-top: 10px;
}

.ai-chat__row--user {
  margin-left: auto;
  justify-content: flex-end;
  gap: 6px;
}

.ai-chat__avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.ai-chat__avatar--ai {
  width: 28px;
  height: 28px;
  background: #f1efed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat__avatar--user {
  border: 1px solid rgba(186, 152, 88, 0.55);
  color: #b18a48;
  background: rgba(255, 248, 231, 0.72);
}

.ai-chat__avatar--spacer {
  opacity: 0;
  pointer-events: none;
}

.ai-chat__message-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ai-chat__row--user .ai-chat__message-block {
  align-items: flex-end;
}

.ai-chat__bubble {
  max-width: min(720px, 88%);
  padding: 14px 16px 12px;
  border-radius: 20px;
  width: fit-content;
}

.ai-chat__bubble--ai {
  background: #f7f5f2;
  color: #222;
  max-width: 75%;
  border-radius: 18px;
  padding: 9px 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.035);
}

.ai-chat__input-wrap {
  position: sticky;
  bottom: 0;
  z-index: 5;
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px clamp(14px, 4vw, 24px) calc(16px + env(safe-area-inset-bottom));
  background: rgba(244, 239, 230, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ai-chat__input {
  flex: 1;
  min-height: 60px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #fff;
  color: #1a1a1a;
  font: inherit;
  font-size: 0.97rem;
  padding: 0 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.ai-chat__send {
  min-width: 60px;
  min-height: 60px;
  border: 1px solid rgba(133, 106, 57, 0.16);
  border-radius: 18px;
  background: #e8d9bc;
  color: #5f4a23;
  font: inherit;
  font-size: 0;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(93, 73, 36, 0.2);
}

.ai-chat__send::before {
  content: "➤";
  font-size: 1.05rem;
  line-height: 1;
}

.ai-chat__bubble--user {
  margin-left: auto;
  min-width: 120px;
  max-width: min(820px, 86vw);
  width: auto;
  background: #545454;
  color: white;
  border-radius: 18px;
  padding: 9px 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.ai-chat__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 4px;
}

.ai-chat__time,
.ai-chat__check {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.01em;
}

.ai-chat__text {
  margin: 0;
  line-height: 1.64;
  font-size: 0.98rem;
  font-weight: 500;
  white-space: pre-wrap;
  word-break: normal;
  overflow-wrap: normal;
}

.ai-chat__quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(720px, 88%);
}

.ai-chat__quick-reply {
  border-radius: 999px;
  padding: 8px 14px;
  background: #f1efed;
  border: none;
  color: #333;
  font: inherit;
  font-size: 0.91rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 120ms ease, background-color 160ms ease;
}

.ai-chat__quick-reply:hover {
  background: #e9e2d8;
}

.ai-chat__quick-reply:active {
  transform: scale(0.98);
}

.ai-chat__analyzing-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 18, 22, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ai-chat__analyzing-modal {
  width: min(320px, calc(100vw - 34px));
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  background: #fff;
  box-shadow: 0 16px 34px rgba(22, 22, 24, 0.22);
}

.ai-chat__analyzing-title {
  margin: 0;
  color: #1f2025;
  font-size: 1rem;
  font-weight: 800;
}

.ai-chat__analyzing-subtitle {
  margin: 8px 0 0;
  color: #62646f;
  font-size: 0.9rem;
  line-height: 1.55;
}

.ai-chat__analyzing-dots {
  margin-top: 12px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.ai-chat__analyzing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(84, 84, 84, 0.65);
  animation: aiChatAnalyzingDot 1.2s ease-in-out infinite;
}

.ai-chat__analyzing-dots span:nth-child(2) { animation-delay: 140ms; }
.ai-chat__analyzing-dots span:nth-child(3) { animation-delay: 280ms; }

@keyframes aiChatAnalyzingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.35; }
  40% { transform: translateY(-4px); opacity: 1; }
}

.ai-chat__typing {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
}

.ai-chat__typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.5);
  animation: aiTyping 900ms infinite ease-in-out;
}

.ai-chat__typing-dot:nth-child(2) { animation-delay: 120ms; }
.ai-chat__typing-dot:nth-child(3) { animation-delay: 240ms; }

.ai-chat__typing-ellipsis {
  display: inline-block;
  width: 3ch;
  overflow: hidden;
  letter-spacing: 0.08em;
  color: rgba(34, 34, 34, 0.7);
  animation: aiTypingEllipsis 1.1s steps(4, end) infinite;
}

.ai-chat__unlock {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.ai-chat__unlock-btn {
  min-height: 48px;
  border: 1px solid rgba(129, 101, 48, 0.2);
  border-radius: 14px;
  padding: 0 20px;
  background: #e8d9bc;
  color: #4e3c1e;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(93, 73, 36, 0.18);
}

.ai-chat__unlock-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

@keyframes aiTyping {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.35; }
  40% { transform: translateY(-3px); opacity: 1; }
}

@keyframes aiTypingEllipsis {
  0% { width: 0ch; }
  70% { width: 3ch; }
  100% { width: 0ch; }
}

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

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

body[data-page="aiChat"] .site-footer {
  display: none;
}

.report {
  background: #faf7f2;
  padding: clamp(30px, 6vw, 54px) clamp(16px, 5vw, 32px) clamp(56px, 9vw, 90px);
  position: relative;
}

.report__hero {
  width: min(820px, 100%);
  margin: 0 auto 30px;
}

.report__kicker {
  margin: 0;
  color: rgba(26, 26, 26, 0.62);
  font-size: 0.95rem;
  font-weight: 700;
}

.report__headline {
  margin: 10px 0 0;
  color: #1a1a1a;
  font-size: clamp(1.9rem, 5.3vw, 2.7rem);
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.report__hero-subtitle {
  margin: 12px 0 0;
  color: rgba(26, 26, 26, 0.62);
  font-size: 1rem;
  line-height: 1.75;
}

.report__hero-summary {
  margin-top: 20px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(28, 24, 18, 0.08);
}

.report__hero-summary-label {
  margin: 0;
  color: rgba(26, 26, 26, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
}

.report__hero-summary-text {
  margin: 8px 0 0;
  color: #1a1a1a;
  font-size: 1.03rem;
  line-height: 1.8;
}

.report__hero-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report__hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(232, 217, 188, 0.6);
  color: rgba(60, 45, 21, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.report__article {
  width: min(820px, 100%);
  margin: 0 auto;
}

.report__section {
  padding: 0 2px 32px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.report__section + .report__section {
  margin-top: 34px;
}

.report__section-label {
  margin: 0;
  color: rgba(26, 26, 26, 0.48);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.report__section-title {
  margin: 8px 0 0;
  color: #1a1a1a;
  font-size: 1.2rem;
  font-weight: 800;
}

.report__section p {
  margin: 12px 0 0;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.88);
  font-size: 0.99rem;
}

.report__highlight {
  background: rgba(232, 217, 188, 0.28);
  padding: 12px 14px;
  border-radius: 12px;
}

.report__risk-line {
  color: rgba(68, 47, 18, 0.84);
}

.report__list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.report__list li {
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.86);
  font-size: 0.99rem;
}

.report__list li + li {
  margin-top: 6px;
}

.report__share {
  width: min(820px, 100%);
  margin: 52px auto 0;
  padding: 0 2px;
  border: none;
  background: transparent;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  padding-top: 22px;
  animation: reportShareFadeIn 420ms ease both;
}

.report__share-title {
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.82);
}

.report__share-copy {
  margin: 8px 0 0;
  text-align: center;
  color: rgba(26, 26, 26, 0.56);
  font-size: 0.9rem;
  line-height: 1.75;
}

.report__share-card {
  margin-top: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.report__share-actions {
  margin-top: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.report__share-action {
  width: 72px;
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  color: #1a1a1a;
  transition: transform 0.2s ease;
}

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

.report__share-action:active {
  transform: scale(0.95);
}

.report__share-action:disabled {
  opacity: 0.56;
  cursor: wait;
}

.report__share-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4f1eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.report__share-action:hover .report__share-icon {
  transform: scale(1.04);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.report__share-action--kakao .report__share-icon {
  background: #fee500;
}

.report__share-action--instagram .report__share-icon {
  background: linear-gradient(135deg, #f8f0ff 0%, #fff4e6 100%);
}

.report__share-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.64);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.report__share-btn {
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 14px;
  cursor: pointer;
}

.report__share-btn--primary {
  margin-top: 14px;
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #d8c29d 0%, #e8d9bc 100%);
  color: #4f3c1e;
  font-size: 0.97rem;
  box-shadow: 0 12px 24px rgba(131, 102, 55, 0.2);
}

.report__share-warning {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(26, 26, 26, 0.55);
}

.report__share-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1400;
  margin: 0;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(26, 26, 26, 0.88);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.report__shared-head,
.report__shared-cta {
  width: min(920px, 100%);
  margin: 0 auto;
}

.report__shared-head {
  padding: 0 2px 2px;
}

.report__shared-title {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  letter-spacing: -0.01em;
}

.report__shared-note {
  margin: 6px 0 0;
  color: rgba(26, 26, 26, 0.58);
  font-size: 0.9rem;
}

.report__shared-cta {
  margin-top: 16px;
}

.report__shared-cta-btn {
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #d8c29d 0%, #e8d9bc 100%);
  color: #4f3c1e;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(131, 102, 55, 0.24);
}

.report__login-gate {
  width: min(720px, 100%);
  margin: 12vh auto 0;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 40px rgba(26, 26, 26, 0.14);
  text-align: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 4;
}

.report__login-title {
  margin: 0;
  font-size: clamp(1.45rem, 4.2vw, 2rem);
}

.report__login-copy {
  margin: 10px 0 0;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}

.report__login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: none;
  border-radius: 14px;
  padding: 12px 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.report__login-helper {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.58);
}

.report--locked [data-report-content] {
  filter: blur(6px);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

.login-page {
  min-height: calc(100vh - 70px);
  padding: 34px 16px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-page__panel {
  width: min(460px, 100%);
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(26, 26, 26, 0.1);
}

.login-page__title {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.login-page__subtitle {
  margin: 10px 0 0;
  color: rgba(26, 26, 26, 0.68);
  line-height: 1.55;
}

.login-page__oauth {
  width: 100%;
  margin-top: 18px;
  min-height: 46px;
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 12px;
  background: #fff;
  color: #1a1a1a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.login-page__divider {
  margin: 12px 0 0;
  text-align: center;
  color: rgba(26, 26, 26, 0.55);
  font-size: 0.88rem;
}

.login-page__form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-page__label {
  margin-top: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}

.login-page__input {
  min-height: 44px;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 12px;
  font: inherit;
}

.login-page__submit {
  margin-top: 12px;
  min-height: 46px;
  border: none;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.login-page__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.login-page__status {
  margin: 8px 0 0;
  color: rgba(26, 26, 26, 0.65);
  font-size: 0.9rem;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(20, 20, 20, 0.45);
}

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

.login-modal__panel {
  width: min(460px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: #fbf8f2;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.16);
  padding: 24px 22px 20px;
  position: relative;
}

.login-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  color: rgba(26, 26, 26, 0.72);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.login-modal__title {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 4.5vw, 1.95rem);
  font-weight: 800;
  text-align: center;
}

.login-modal__divider {
  margin: 18px 0 14px;
  text-align: center;
  color: rgba(26, 26, 26, 0.5);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-modal__divider::before,
.login-modal__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(26, 26, 26, 0.14);
}

.login-modal__form {
  display: grid;
  gap: 10px;
}

.login-modal__label {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.7);
}

.login-modal__input {
  min-height: 52px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0 15px;
  font: inherit;
  background: #fff;
}

.login-modal__checkbox {
  margin-top: 4px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(26, 26, 26, 0.55);
}

.login-modal__checkbox input {
  margin-top: 2px;
}

.login-modal__submit {
  margin-top: 6px;
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #d8c29d 0%, #e8d9bc 100%);
  color: #4f3c1e;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(131, 102, 55, 0.24);
}

.login-modal__socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.login-modal__social-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.login-modal__social-btn svg {
  width: 22px;
  height: 22px;
}

.login-modal__social-btn:hover {
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(140, 110, 61, 0.3);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.login-modal__social-btn:active {
  transform: translateY(0) scale(0.99);
}

.login-modal__legal {
  margin: 14px 0 0;
  text-align: center;
  color: rgba(26, 26, 26, 0.56);
  font-size: 0.76rem;
  line-height: 1.5;
}

.login-modal__legal-link {
  color: rgba(26, 26, 26, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.login-modal__status {
  margin: 10px 0 0;
  color: rgba(26, 26, 26, 0.68);
  font-size: 0.84rem;
  min-height: 1.2em;
  text-align: center;
}

.login-modal__social-btn:disabled,
.login-modal__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

body.has-modal-open {
  overflow: hidden;
}

.site-footer {
  position: static;
  z-index: auto;
  clear: none;
  width: 100%;
  border-top: 1px solid var(--line);
  padding: 14px 20px 24px;
  margin-top: 0;
}

.site-footer__inner {
  width: min(1024px, 100%);
  margin: 0 auto;
}

.footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: center;
}

.footer-nav__link {
  color: rgba(47, 47, 47, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-nav__link:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__text {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(47, 47, 47, 0.62);
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .hero__content { padding: 0 40px; }
  .hero__left {
    width: min(500px, 56%);
    transform: translateY(-6px);
  }
  .hero__title { font-size: clamp(56px, 8vw, 78px); }
  .hero__subtitle { font-size: clamp(18px, 2.2vw, 28px); }
  .hero__art {
    width: min(40%, 378px);
    right: 16px;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .site-nav-toggle {
    display: inline-block;
    margin-left: auto;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 12px;
    right: 12px;
    z-index: 30;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(47, 47, 47, 0.14);
    border-radius: 12px;
    background: rgba(255, 246, 206, 0.98);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav__list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .site-nav__link {
    width: 100%;
    justify-content: flex-start;
  }
  .site-lang {
    margin-left: 8px;
  }
  .hero {
    width: 100%;
    aspect-ratio: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
    overflow: visible;
  }
  .hero__art {
    position: relative;
    order: 2;
    right: auto;
    bottom: auto;
    width: min(56vw, 270px);
    max-height: none;
    margin: 14px auto 0;
    transform: translateX(-4px);
  }
  .hero__content {
    position: relative;
    order: 1;
    inset: auto;
    display: block;
    align-items: unset;
    padding: 42px 22px 0;
    width: 100%;
    transform: none;
  }
  .hero__left {
    width: 100%;
    max-width: 100%;
    transform: none;
    text-align: center;
  }
  .hero__title {
    font-size: clamp(58px, 18vw, 76px);
    line-height: 0.92;
  }
  .hero__subtitle {
    margin-top: 14px;
    font-size: clamp(13px, 4.2vw, 20px);
    line-height: 1.45;
    max-width: 96%;
  }
  .hero__actions {
    margin-top: 28px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__actions--desktop { display: none; }
  .hero__actions--mobile {
    display: flex;
    order: 3;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 0 22px;
    width: 100%;
  }
  .app-preview {
    padding: 100px 0 120px;
  }
  .app-preview__inner {
    padding: 0 22px;
  }
  .app-preview__title {
    font-size: clamp(2rem, 8.8vw, 2.5rem);
  }
  .app-preview__subtitle {
    margin-bottom: 34px;
    font-size: clamp(0.98rem, 4.3vw, 1.1rem);
  }
  .app-preview__track {
    padding: 2px 0 8px;
  }
  .app-preview__slide {
    padding: 0 18px;
  }
  .app-preview__slide-title {
    font-size: 1.14rem;
  }
  .app-preview__image-card {
    padding: 18px;
    border-radius: 20px;
  }
  .app-preview__image {
    width: min(88vw, 420px);
    border-radius: 24px;
  }
  .btn {
    width: min(86vw, 320px);
    max-width: none;
    min-width: 0;
    font-size: 15px;
    padding: 15px 16px;
  }
  .content-page {
    padding: 18px 16px 28px;
  }
  .support-layout {
    grid-template-columns: 1fr;
  }
  .support-form {
    padding: 14px;
  }
  .content-table {
    min-width: 560px;
  }
  .report {
    padding-top: 24px;
  }
  .report__hero,
  .report__article,
  .report__share {
    width: min(820px, 100%);
  }
  .report__headline {
    font-size: clamp(1.65rem, 6.6vw, 2.2rem);
  }
  .report__hero-summary {
    padding: 18px;
    border-radius: 20px;
  }
  .report__section {
    padding-bottom: 28px;
  }
  .report__section + .report__section {
    margin-top: 30px;
  }
  .report__share-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .report__share-action {
    width: 100%;
  }
  .report__share-btn {
    width: 100%;
  }
  .ai-chat__messages {
    padding-bottom: 114px;
  }
  .ai-chat__bubble {
    max-width: min(88vw, 580px);
  }
  .ai-chat__input {
    min-height: 58px;
  }
  .ai-chat__send {
    min-width: 56px;
    min-height: 56px;
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  .site-header__inner { padding: 8px 12px; }
  .site-brand { font-size: 1.32rem; }
  .site-lang__btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  .hero__content { padding: 34px 16px 0; }
  .hero__title { font-size: clamp(50px, 17vw, 66px); }
  .hero__subtitle { font-size: clamp(12px, 3.9vw, 17px); }
  .hero__art {
    width: min(58vw, 225px);
    margin-top: 8px;
    transform: translateX(-4px);
  }
  .hero__actions--mobile { padding: 0 16px; }
  .app-preview__inner { padding: 0 16px; }
  .app-preview__slide { padding: 0 10px; }
  .app-preview__image-card {
    padding: 14px;
    border-radius: 18px;
  }
  .app-preview__image {
    width: min(90vw, 420px);
    border-radius: 16px;
  }
  .btn {
    width: min(92vw, 320px);
    font-size: 14px;
  }
  .footer-nav {
    gap: 6px 10px;
  }
  .footer-nav__link {
    font-size: 0.9rem;
  }
}

/* Premium minimal report refresh */
body[data-page="report"] .report {
  background: #f1efed;
}

.report [data-report-content] {
  transition: filter 760ms cubic-bezier(0.22, 1, 0.36, 1), opacity 520ms ease;
}

.report__hero,
.report__insights,
.report__article,
.report__matching,
.report__share {
  animation: reportSectionFade 520ms ease both;
}

.report__insights {
  width: min(820px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.report__insight-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 15, 15, 0.05);
  padding: 18px 18px 16px;
  min-height: 104px;
}

.report__insight-label {
  margin: 0;
  color: rgba(30, 30, 30, 0.5);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.report__insight-value {
  margin: 10px 0 0;
  color: #1d1d1f;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
}

.report__article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(16, 16, 16, 0.06);
  padding: clamp(18px, 3vw, 28px);
}

.report__section {
  padding: 0 2px 26px;
}

.report__section-title {
  font-size: clamp(1.1rem, 3vw, 1.28rem);
  letter-spacing: -0.01em;
}

.report__matching {
  width: min(820px, 100%);
  margin: 20px auto 0;
}

.report__matching-btn,
.report__share-btn--primary {
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 999px;
  background: #545454;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(34, 34, 34, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.report__matching-btn:hover,
.report__share-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(34, 34, 34, 0.26);
}

.report__matching-btn:active,
.report__share-btn--primary:active {
  transform: scale(0.99);
}

.report__share {
  margin-top: 26px;
}

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

@media (max-width: 760px) {
  .report__insights {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .report__article {
    padding: 18px 16px;
  }
}

.report--analyzing [data-report-content] {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.report--entrance-prep [data-report-content] {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.report--entrance-prep .report__headline,
.report--entrance-prep .report__hero-summary,
.report--entrance-prep .report__insights,
.report--entrance-prep .report__article,
.report--entrance-prep .report__matching,
.report--entrance-prep .report__share {
  opacity: 0;
  transform: translateY(14px);
}

.report--entrance-run [data-report-content] {
  filter: blur(0);
}

.report--entrance-run .report__headline {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.report--entrance-run .report__hero-summary {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease 120ms, transform 520ms ease 120ms;
}

.report--entrance-run .report__insights {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease 260ms, transform 520ms ease 260ms;
}

.report--entrance-run .report__article {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease 380ms, transform 520ms ease 380ms;
}

.report--entrance-cta .report__matching,
.report--entrance-cta .report__share {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.report__analyzing-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  opacity: 1;
  transition: opacity 240ms ease;
}

.report__analyzing-overlay.report__analyzing-overlay--exit {
  opacity: 0;
}

/* Storytelling premium report overrides */
body[data-page="report"] {
  background: #fff;
}

body[data-page="report"] .site-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

body[data-page="report"] .report {
  background-color: #fff;
  background-image: url("./assets/report-background.svg");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
}

.report [data-report-content] {
  width: min(92vw, 760px);
  margin: 0 auto;
}

.report__hero,
.report__insights,
.report__article,
.report__matching,
.report__share {
  background: #f1efed;
  border-radius: 20px;
  padding: 40px;
}

.report__hero {
  text-align: center;
}

.report__headline {
  color: #111;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.report__hero-subtitle,
.report__hero-summary-label,
.report__section-label,
.report__share-copy {
  color: #666;
}

.report__hero-summary-text,
.report__section p,
.report__section li {
  color: #111;
  line-height: 1.68;
}

.report__hero-cta {
  margin-top: 22px;
  border: none;
  border-radius: 999px;
  background: #545454;
  color: #fff;
  padding: 14px 24px;
  min-height: 48px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.report__hero-illu {
  width: 76px;
  height: 76px;
  margin: 0 auto 12px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.report__hero-cta:active,
.report__matching-btn:active,
.report__share-btn--primary:active,
.report__share-btn--secondary:active {
  transform: scale(0.98);
}

.report__insights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.report__insight-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.45s ease, filter 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .report__insight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }
}

.report__insight-card:nth-child(1) { transition-delay: 0ms; }
.report__insight-card:nth-child(2) { transition-delay: 70ms; }
.report__insight-card:nth-child(3) { transition-delay: 140ms; }
.report__insight-card:nth-child(4) { transition-delay: 210ms; }

.report__mini {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.report__mini-card {
  background: #fff;
  border-radius: 20px;
  padding: 16px 16px 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.report__mini-title {
  margin: 0;
  color: #111;
  font-size: 0.9rem;
  font-weight: 700;
}

.report__mini-text {
  margin: 8px 0 0;
  color: #666;
  line-height: 1.62;
  font-size: 0.92rem;
}

.report__mini-score {
  margin: 8px 0 0;
  color: #8d7d60;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.report__mini-bar {
  margin-top: 10px;
  height: 7px;
  border-radius: 999px;
  background: #efebe6;
  display: block;
  overflow: hidden;
}

.report__mini-bar span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: 999px;
  background: #d8c29d;
  transition: width 380ms ease;
}

.report__matching {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.report__share-btn--secondary {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(84, 84, 84, 0.35);
  background: #fff;
  color: #545454;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.report__reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.report__reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.report--entrance-run .report__headline {
  transition: opacity 420ms ease, transform 420ms ease;
}

.report__story {
  margin-top: 20px;
  background: #f1efed;
  border-radius: 20px;
  padding: 28px 24px;
}

.report__story-title {
  margin: 0;
  color: #111;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.report__story p {
  margin: 12px 0 0;
  color: #444;
  line-height: 1.68;
}

.report__story--empty {
  text-align: center;
}

.report__story [data-report-retry-analysis],
.report__story [data-report-back-chat] {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.report__story [data-report-retry-analysis] {
  margin-top: 16px;
}

.report__story [data-report-back-chat] {
  margin-top: 12px;
}

@media (min-width: 900px) {
  .report [data-report-content] {
    width: min(92vw, 820px);
  }

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

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

@media (max-width: 640px) {
  .report [data-report-content] {
    width: min(100%, 420px);
  }

  .report__hero,
  .report__insights,
  .report__mini,
  .report__article,
  .report__matching,
  .report__share {
    border-radius: 16px;
    padding: 24px 18px;
  }

  .report__story {
    border-radius: 16px;
    padding: 22px 18px;
  }
}

.report__analyzing-modal {
  width: min(360px, calc(100vw - 32px));
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.14);
  padding: 22px 18px 18px;
  text-align: center;
}

.report__analyzing-title {
  margin: 0;
  color: #1d1d1f;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.report__analyzing-subtitle {
  margin: 10px 0 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.report__analyzing-dots {
  margin-top: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.report__analyzing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(84, 84, 84, 0.65);
  animation: reportAnalyzingDot 1.2s ease-in-out infinite;
}

.report__analyzing-dots span:nth-child(2) { animation-delay: 140ms; }
.report__analyzing-dots span:nth-child(3) { animation-delay: 280ms; }

@keyframes reportAnalyzingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.35; }
  40% { transform: translateY(-4px); opacity: 1; }
}

/* report v2 */
.report [data-report-content] {
  width: min(420px, calc(100vw - 28px));
  margin: 22px auto 48px;
  display: grid;
  gap: 14px;
}

.report2__hero {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 24px 20px;
  color: #f7f8fb;
  background: linear-gradient(140deg, #273142 0%, #2c3443 58%, #3a3f4f 100%);
  box-shadow: 0 18px 38px rgba(25, 31, 42, 0.24);
  animation: report2FadeUp 520ms ease both;
}

.report2__hero::before,
.report2__hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.report2__hero::before {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 206, 218, 0.4) 0%, rgba(255, 206, 218, 0) 70%);
  top: -26px;
  right: -30px;
}

.report2__hero::after {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(222, 196, 143, 0.32) 0%, rgba(222, 196, 143, 0) 72%);
  bottom: -38px;
  left: -24px;
}

.report2__hero-deco {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.1rem;
}

.report2__type-label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  opacity: 0.74;
}

.report2__type-emoji {
  margin: 8px 0 0;
  font-size: 1.45rem;
}

.report2__type-title {
  margin: 6px 0 0;
  font-size: clamp(1.4rem, 5.6vw, 1.85rem);
  line-height: 1.2;
  font-weight: 800;
}

.report2__type-desc {
  margin: 10px 0 0;
  font-size: 0.94rem;
  line-height: 1.65;
  opacity: 0.94;
}

.report2__one-line {
  margin: 10px 0 0;
  color: rgba(248, 249, 252, 0.88);
  font-size: 0.9rem;
  line-height: 1.6;
}

.report2__tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report2__tag {
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.77rem;
  font-weight: 600;
}

.report2__hero-hints {
  margin-top: 14px;
  display: grid;
  gap: 6px;
}

.report2__hero-hint {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(246, 248, 253, 0.9);
}

.report2__hero-hint strong {
  display: inline-block;
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.report2__insights {
  display: grid;
  gap: 10px;
}

.report2__card {
  border-radius: 20px;
  padding: 17px 16px;
  background: #f1efed;
  box-shadow: 0 10px 24px rgba(21, 22, 26, 0.07);
  animation: report2FadeUp 520ms ease both;
}

.report2__card:nth-child(1) { animation-delay: 70ms; }
.report2__card:nth-child(2) { animation-delay: 120ms; }
.report2__card:nth-child(3) { animation-delay: 170ms; }
.report2__card:nth-child(4) { animation-delay: 220ms; }

.report2__card-label {
  margin: 0;
  color: #5f636d;
  font-size: 0.79rem;
  font-weight: 700;
}

.report2__card-text {
  margin: 8px 0 0;
  color: #111;
  font-size: 0.94rem;
  line-height: 1.62;
  font-weight: 600;
}

.report2__traits {
  display: grid;
  gap: 10px;
}

.report2__trait {
  border-radius: 20px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: 0 8px 18px rgba(18, 20, 24, 0.05);
}

.report2__trait-title {
  margin: 0;
  color: #202227;
  font-size: 0.84rem;
  font-weight: 700;
}

.report2__trait-copy {
  margin: 8px 0 0;
  color: #30313a;
  font-size: 0.92rem;
  line-height: 1.62;
}

.report2__pill-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.report2__pill-row span {
  border-radius: 999px;
  padding: 5px 10px;
  background: #f6f0e6;
  color: #5f5240;
  font-size: 0.75rem;
  font-weight: 600;
}

.report2__bar {
  margin-top: 10px;
  display: block;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: #ebe7e2;
  overflow: hidden;
}

.report2__bar > span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8c3a1 0%, #c8a77f 100%);
  transition: width 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.report2__story {
  border-radius: 22px;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 10px 20px rgba(20, 23, 30, 0.06);
}

.report2__story-title {
  margin: 0;
  color: #111;
  font-size: 1.04rem;
  font-weight: 800;
}

.report2__story p {
  margin: 10px 0 0;
  color: #373945;
  font-size: 0.92rem;
  line-height: 1.68;
}

.report2__cta {
  border-radius: 22px;
  padding: 18px;
  background: #f1efed;
  display: grid;
  gap: 9px;
}

.report2__btn {
  min-height: 48px;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 180ms ease;
}

.report2__btn:active {
  transform: scale(0.98);
}

.report2__btn--primary {
  background: #545454;
  color: #fff;
  box-shadow: 0 10px 20px rgba(44, 44, 44, 0.22);
}

.report2__btn--secondary {
  background: #fff;
  color: #454545;
  border: 1px solid rgba(68, 68, 68, 0.16);
}

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

/* ================================
   Premium About Page Refresh
================================ */

body[data-page="about"] {
  background: var(--bg);
  color: #1d1d1f;
}

body[data-page="about"] .content-page {
  max-width: 980px;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 36px)
    clamp(72px, 10vw, 120px);
}

body[data-page="about"] .content-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 32px;
  padding: clamp(32px, 6vw, 64px);
  box-shadow:
    0 30px 80px rgba(20, 20, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body[data-page="about"] .content-page__title {
  max-width: 760px;
  margin: 0 0 22px;
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.2rem, 5.6vw, 4.3rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.055em;
  color: #111111;
}

body[data-page="about"] .content-page__title::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 28px;
  border-radius: 999px;
  background: #545454;
}

body[data-page="about"] .content-page__text {
  max-width: 760px;
  margin: 0;
  color: rgba(29, 29, 31, 0.72);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

body[data-page="about"] .content-page__subtitle {
  margin: -4px 0 16px;
  color: rgba(29, 29, 31, 0.52);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

body[data-page="about"] .content-page__section {
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: clamp(32px, 5vw, 52px);
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

body[data-page="about"] .content-page__heading {
  margin: 0 0 16px;
  color: #181818;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

body[data-page="about"] .content-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

body[data-page="about"] .content-list li {
  position: relative;
  margin: 0;
  padding: 18px 20px 18px 48px;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  color: rgba(29, 29, 31, 0.78);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.025em;
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.035);
  word-break: keep-all;
}

body[data-page="about"] .content-list li::before {
  content: "✦";
  position: absolute;
  left: 20px;
  top: 18px;
  color: #545454;
  font-size: 0.9rem;
}

body[data-page="about"] .content-note {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(84, 84, 84, 0.12);
  border-left: 4px solid #545454;
  border-radius: 22px;
  background: rgba(241, 239, 237, 0.72);
  color: rgba(29, 29, 31, 0.72);
  font-size: 0.98rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

body[data-page="about"] .content-page__email {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #545454;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0.5;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(34, 34, 34, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

body[data-page="about"] .content-page__email:hover {
  transform: translateY(-1px);
  background: #333333;
  opacity: 0.72;
  box-shadow: 0 16px 34px rgba(34, 34, 34, 0.24);
}

@media (max-width: 720px) {
  body[data-page="about"] .content-page {
    padding: 34px 16px 64px;
  }

  body[data-page="about"] .content-card {
    border-radius: 24px;
    padding: 28px 20px;
  }

  body[data-page="about"] .content-page__title {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  body[data-page="about"] .content-page__section {
    margin-top: 38px;
    padding-top: 30px;
  }

  body[data-page="about"] .content-page__subtitle {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  body[data-page="about"] .content-list li {
    padding: 16px 16px 16px 44px;
    border-radius: 18px;
  }
}

/* About polish v2 */
body[data-page="about"] .content-page {
  max-width: 1040px;
}

body[data-page="about"] .content-card {
  position: relative;
  overflow: hidden;
}

body[data-page="about"] .content-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

body[data-page="about"] .content-page__title {
  max-width: 820px;
  margin-bottom: 26px;
}

body[data-page="about"] .content-page__text + .content-page__text {
  margin-top: 14px;
}

body[data-page="about"] .content-page__section:first-of-type {
  margin-top: clamp(36px, 5vw, 58px);
}

body[data-page="about"] .content-list {
  gap: 14px;
}

body[data-page="about"] .content-list li {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body[data-page="about"] .content-list li:hover {
  transform: translateY(-1px);
  border-color: rgba(84, 84, 84, 0.14);
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.06);
}

body[data-page="about"] .content-page__email {
  margin-top: 4px;
  letter-spacing: -0.01em;
}

body[data-page="about"] .content-card::after {
  content: "AI Match  •  Value-based  •  Deep Fit";
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(84, 84, 84, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(38, 40, 46, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  body[data-page="about"] .content-card::after {
    font-size: 0.68rem;
    margin-bottom: 14px;
  }
}
