@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&family=Noto+Sans+KR:wght@400;500;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");

:root {
  --paper: #f6f1ea;
  --paper-strong: #fbf8f3;
  --paper-muted: #eee5d9;
  --ink: #191319;
  --ink-soft: #655969;
  --ink-muted: #8f8290;
  --line: rgba(53, 39, 57, 0.1);
  --line-strong: rgba(53, 39, 57, 0.18);
  --plum: #8829c3;
  --plum-bright: #9a39d7;
  --plum-dark: #6d4384;
  --plum-deep: #5a376e;
  --plum-night: #24172c;
  --gold: #b98a3a;
  --white: #ffffff;
  --shadow-soft: 0 20px 48px rgba(24, 17, 25, 0.06);
  --shadow-panel: 0 28px 64px rgba(21, 14, 24, 0.1);
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --container: min(1220px, calc(100vw - 56px));
  --font-sans-en: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --font-sans-ko: "Pretendard Variable", "Pretendard", "Noto Sans KR",
    "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-serif-en: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --font-reading-ko: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-editorial-ko: "Nanum Myeongjo", "Noto Serif KR", "Batang", "AppleMyungjo", serif;
  --font-body: var(--font-sans-en);
  --font-display: var(--font-serif-en);
  --editorial-ink: #231b17;
  --editorial-ink-soft: #5f564f;
  --editorial-ink-muted: #8a8078;
  --editorial-accent: #9a8d82;
  --editorial-brand: #6e2aa7;
  --editorial-brand-strong: #551b89;
  --editorial-brand-soft: #f4ecfb;
  --editorial-brand-tint: rgba(110, 42, 167, 0.09);
  --editorial-brand-line: rgba(110, 42, 167, 0.18);
  --editorial-line: rgba(63, 47, 39, 0.12);
  --editorial-surface: #f4efe8;
}

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

html {
  scroll-behavior: smooth;
}

html[lang="ko"] {
  --font-body: var(--font-sans-ko);
  --font-display: var(--font-sans-ko);
}

html[lang="en"] {
  --font-display: var(--font-serif-en);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(251, 248, 243, 0.98), rgba(246, 241, 234, 0.98)),
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.045), transparent 24%);
  font-family: var(--font-body);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

body[data-language="en"] [lang="ko"],
body[data-language="ko"] [lang="en"] {
  display: none !important;
}

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

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

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 999;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--plum);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

.keep-together {
  white-space: nowrap;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0;
  border-bottom: 1px solid rgba(53, 39, 57, 0.08);
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(18px);
}

.header-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  min-height: 72px;
  padding: 10px 0 9px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: none;
}

.brand-tag {
  align-self: center;
  padding-left: 14px;
  border-left: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav .nav-link-brochure {
  display: none;
}

.site-nav[hidden] {
  display: none !important;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item--has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
}

.nav-item > a {
  z-index: 2;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav .nav-link-product {
  display: none !important;
  gap: 0;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  gap: 0;
  min-width: 130px;
  padding: 10px 0 12px;
  border: none;
  border-radius: 0 0 6px 6px;
  background: rgba(251, 248, 243, 0.99);
  box-shadow: 0 6px 20px rgba(20, 14, 24, 0.07);
  backdrop-filter: blur(20px);
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(3px);
  transition:
    opacity 140ms ease,
    visibility 140ms ease,
    transform 140ms ease;
}

.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu a {
  position: relative;
  justify-content: flex-start;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  white-space: nowrap;
  transition: color 130ms ease;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu a.is-current {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.site-nav-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--plum);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--ink);
  background: transparent;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav .nav-submenu a::after {
  content: none;
  display: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 6px 16px rgba(28, 20, 31, 0.04);
}

.lang-button {
  min-width: 34px;
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--plum);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.page-main {
  display: block;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 88px;
  background: #2e1258;
  color: var(--white);
}

body[data-page="home"] .page-hero {
  padding: 108px 0;
  min-height: calc(60vh - 32px);
  display: flex;
  align-items: center;
}

body[data-page="home"] .page-hero-inner {
  grid-template-columns: minmax(0, 0.98fr) minmax(430px, 1.08fr);
  gap: 34px;
  align-items: center;
}

body[data-page="home"] .hero-copy {
  max-width: 560px;
}

body[data-page="home"] .hero-summary {
  max-width: 29ch;
  margin-top: 16px;
  font-size: clamp(0.98rem, 1.26vw, 1.12rem);
}

html[lang="en"] body[data-page="home"] .hero-summary {
  max-width: 44ch;
}

html[lang="en"] body[data-page="home"] .hero-summary > span[lang="en"] {
  display: block;
  text-wrap: balance;
}

body[data-page="home"] .hero-note {
  max-width: 48ch;
  margin-top: 12px;
  font-size: 0.88rem;
  line-height: 1.54;
}

body[data-page="home"] .home-hero-note-line {
  display: inline;
}

html[lang="ko"] body[data-page="home"] .home-hero-note-ko {
  display: block;
}

html[lang="ko"] body[data-page="home"] .home-hero-note-line {
  display: block;
  white-space: nowrap;
}

body[data-page="home"] .hero-actions {
  margin-top: 20px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 68% 42%, rgba(148, 52, 210, 0.54) 0%, transparent 52%),
    radial-gradient(ellipse at 16% 72%, rgba(120, 60, 210, 0.22) 0%, transparent 44%);
  pointer-events: none;
}

.page-hero::after {
  content: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
  flex-shrink: 0;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero-summary {
  max-width: 34ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.96rem, 1.2vw, 1.06rem);
  font-weight: 400;
  line-height: 1.6;
}

.hero-note {
  max-width: 58ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.hero-actions,
.button-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions,
.button-row {
  margin-top: 30px;
}

.hero-client-strip {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 8px;
  padding: 16px 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 42px rgba(24, 16, 30, 0.08);
  backdrop-filter: blur(10px);
}

.hero-client-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-client-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-client-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-client-link:hover,
.hero-client-link:focus-visible {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(74, 30, 105, 0.22);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--plum-bright);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(74, 30, 105, 0.24);
}

/* Secondary: ghost on dark backgrounds (hero, dark sections) */
.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow: none;
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow: none;
  transform: translateY(-1px);
}

.button-disabled,
.button[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
  opacity: 0.7;
}

.button-tooltip-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: not-allowed;
}

.button-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(19, 12, 26, 0.94);
  box-shadow: 0 14px 30px rgba(10, 4, 17, 0.32);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.button-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(19, 12, 26, 0.94);
  transform: translateX(-50%) rotate(45deg);
}

.button-tooltip-trigger:hover .button-tooltip,
.button-tooltip-trigger:focus-visible .button-tooltip,
.button-tooltip-trigger:focus-within .button-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.button-secondary.button-disabled,
.button-secondary[aria-disabled="true"] {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.button-secondary.button-disabled:hover,
.button-secondary.button-disabled:focus-visible,
.button-secondary[aria-disabled="true"]:hover,
.button-secondary[aria-disabled="true"]:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  transform: none;
}

/* Light: ghost on light/paper backgrounds */
.button-light {
  background: transparent;
  color: var(--plum);
  border-color: rgba(136, 41, 195, 0.32);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(136, 41, 195, 0.06);
  border-color: rgba(136, 41, 195, 0.54);
  box-shadow: none;
  transform: translateY(-1px);
}

.hero-graphic,
.diagram-panel,
.contact-panel,
.content-panel,
.editorial-card,
.nav-card,
.detail-card,
.mandate-card,
.service-card,
.category-card,
.insight-card,
.contact-form-card,
.launch-card {
  border: 1px solid var(--line);
  background: var(--paper-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-graphic {
  position: relative;
  min-height: auto;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

body[data-page="home"] .hero-graphic {
  padding: 32px 30px;
}

body[data-page="home"] .hero-graphic-title {
  margin-bottom: 10px;
}

body[data-page="clients"] .page-hero {
  background: #060d1a;
}

body[data-page="clients"] .page-hero::before {
  background: radial-gradient(ellipse at 65% 40%, rgba(20, 60, 140, 0.35) 0%, transparent 60%);
}

body[data-page="clients"] .page-hero-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(332px, 0.92fr);
  gap: 30px;
  align-items: start;
}

body[data-page="clients"] .hero-copy {
  max-width: 610px;
}

body[data-page="clients"] .hero-summary {
  max-width: 37ch;
  margin-top: 18px;
  font-size: clamp(0.98rem, 1.45vw, 1.16rem);
}

body[data-page="clients"] .hero-summary-break {
  display: block;
}

body[data-page="clients"] .clients-hero-summary-line {
  display: inline;
}

body[data-language="ko"][data-page="clients"] .clients-hero-summary-ko {
  display: block;
}

body[data-language="ko"][data-page="clients"] .clients-hero-summary-line {
  display: block;
  white-space: nowrap;
}

body[data-page="clients"] .hero-note {
  max-width: 44ch;
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.52;
}

body[data-page="clients"] .hero-actions {
  margin-top: 22px;
}

body[data-page="team"] .page-hero {
  padding: 58px 0 70px;
}

body[data-page="team"] .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(332px, 0.9fr);
  gap: 40px;
  align-items: start;
}

body[data-page="team"] .hero-copy {
  max-width: 620px;
}

body[data-page="team"] .hero-summary {
  max-width: 30ch;
  margin-top: 20px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

body[data-page="team"] .hero-note {
  max-width: 50ch;
  margin-top: 14px;
  font-size: 0.94rem;
  line-height: 1.58;
}

body[data-page="team"] .hero-actions {
  margin-top: 24px;
}

body[data-page="team"] .hero-graphic h2 {
  max-width: 14ch;
}

body[data-page="services"] .page-hero {
  padding: 76px 0 84px;
}

body[data-page="services"] .page-hero-inner {
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, 0.94fr);
  gap: 44px;
  align-items: start;
}

body[data-page="services"] .hero-copy {
  max-width: 620px;
}

body[data-page="services"] .hero-summary {
  max-width: 100%;
  font-size: clamp(0.95rem, 1.08vw, 1.02rem);
  line-height: 1.58;
}

body[data-page="services"] .hero-graphic {
  justify-self: end;
  width: min(100%, 448px);
  padding: 30px 28px 24px;
}

body[data-page="services"] .hero-graphic h2 {
  max-width: 100%;
  font-size: clamp(1.24rem, 1.55vw, 1.5rem);
  line-height: 1.16;
}

body[data-page="about"] .hero-copy {
  max-width: 600px;
}

body[data-page="about"] .page-hero {
  padding: 72px 0 64px;
  background: #f8f4ef;
  color: var(--ink);
}

body[data-page="about"] .page-hero::before {
  content: none;
}

body[data-page="about"] .hero-kicker {
  color: var(--plum);
}

body[data-page="about"] .hero-kicker::before {
  background: var(--plum);
  opacity: 0.45;
}

body[data-page="about"] .hero-title {
  color: var(--ink);
}

body[data-page="about"] .hero-summary {
  color: var(--ink-soft);
}

body[data-page="about"] .hero-graphic {
  border-color: var(--line-strong);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(24, 16, 30, 0.07);
  backdrop-filter: none;
}

body[data-page="about"] .hero-graphic-title {
  color: var(--ink-muted);
}

body[data-page="about"] .hero-graphic h2 {
  color: var(--ink);
}

body[data-page="about"] .hero-metric strong {
  color: var(--ink);
}

body[data-page="about"] .hero-metric span {
  color: var(--ink-soft);
}

body[data-page="about"] .page-hero-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 1.04fr);
  gap: 36px;
  align-items: start;
}

body[data-page="about"] .hero-summary {
  max-width: 30ch;
}

body[data-page="about"] .hero-graphic {
  padding: 26px;
}

body[data-page="about"] .hero-graphic h2 {
  max-width: 15ch;
}

.hero-graphic--about .hero-metric-grid {
  margin-top: 22px;
}

.section.about-editorial-section {
  position: relative;
  padding: 68px 0 80px;
  background:
    radial-gradient(circle at 16% 12%, rgba(185, 138, 58, 0.06), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(136, 41, 195, 0.06), transparent 22%),
    linear-gradient(180deg, #f8f4ef 0%, #f4eee6 100%);
}

.about-editorial-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto auto auto;
  gap: 20px;
  align-items: stretch;
}

.about-editorial-intro {
  grid-column: 1;
  grid-row: 1 / span 4;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  align-content: start;
  gap: 0;
  min-height: 100%;
  padding: 38px 38px 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 16%, rgba(136, 41, 195, 0.08), transparent 22%),
    radial-gradient(circle at 12% 84%, rgba(185, 138, 58, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(252, 248, 243, 0.98), rgba(246, 239, 231, 0.98));
  border: 1px solid rgba(53, 39, 57, 0.08);
  box-shadow: 0 24px 60px rgba(24, 16, 30, 0.07);
  color: var(--ink);
}

.about-editorial-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent 30%);
  pointer-events: none;
}

.about-editorial-intro > * {
  position: relative;
  z-index: 1;
}

.about-editorial-head,
.about-philosophy-head {
  display: grid;
  grid-row: 1;
  grid-template-rows: auto auto auto;
  align-content: start;
  row-gap: 0;
  min-height: 0;
}

.ps-term-label,
.about-editorial-intro .hero-kicker,
.about-philosophy-head .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ps-term-label::before,
.about-editorial-intro .hero-kicker::before,
.about-philosophy-head .section-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.about-editorial-title,
.about-philosophy-head h2 {
  max-width: 12.2ch;
  margin: 0;
  min-height: 4.1em;
  font-family: var(--font-display);
  font-size: clamp(2.26rem, 2.9vw, 3.18rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: var(--ink);
}

.about-editorial-title {
  max-width: 13.9ch;
}

.about-editorial-summary,
.about-philosophy-head .section-copy {
  max-width: 39ch;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  line-height: 1.68;
}

.about-editorial-actions {
  display: grid;
  justify-items: flex-start;
  gap: 12px;
  margin-top: 22px;
}

.about-brochure-note {
  max-width: 38ch;
  margin: 0;
  color: rgba(23, 17, 27, 0.6);
  font-size: 0.82rem;
  line-height: 1.62;
}

.about-editorial-signal-grid,
.about-quote-grid {
  display: grid;
  grid-row: 2 / span 3;
  grid-template-rows: subgrid;
  gap: 0;
  align-content: start;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(53, 39, 57, 0.08);
}

.about-editorial-signal,
.about-quote-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 28px 0 24px;
  background: transparent;
}

.about-editorial-signal-label {
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-editorial-signal strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.about-editorial-signal p {
  margin: 0;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.68;
}

.about-editorial-signal:not(:first-child),
.about-quote-card:not(:first-child) {
  border-top: 1px solid rgba(53, 39, 57, 0.08);
}

.about-editorial-philosophy {
  grid-column: 2;
  grid-row: 1 / span 4;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  min-height: 100%;
  padding: 38px 38px 34px;
  border: 1px solid rgba(53, 39, 57, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.96)),
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.05), transparent 26%);
  box-shadow: 0 24px 60px rgba(24, 16, 30, 0.06);
}

.about-philosophy-head {
  max-width: none;
}

body[data-page="insights"] {
  background:
    radial-gradient(circle at top left, rgba(136, 41, 195, 0.05), transparent 28%),
    linear-gradient(180deg, #fbf7f1 0%, #f5efe7 100%);
}

body[data-page="insights"].content-protection-active,
body[data-page="post"].content-protection-active {
  -webkit-touch-callout: none;
}

body[data-page="insights"].content-protection-active main,
body[data-page="insights"].content-protection-active main *,
body[data-page="post"].content-protection-active main,
body[data-page="post"].content-protection-active main * {
  -webkit-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

body[data-page="insights"].content-protection-active img,
body[data-page="post"].content-protection-active img {
  -webkit-user-drag: none;
  user-drag: none;
}

body[data-page="insights"].content-protection-active ::selection,
body[data-page="post"].content-protection-active ::selection {
  background: transparent;
  color: inherit;
}

body[data-page="insights"].content-protection-devtools-open main,
body[data-page="post"].content-protection-devtools-open main {
  filter: blur(20px);
  pointer-events: none;
}

body[data-page="insights"].content-protection-devtools-open::after,
body[data-page="post"].content-protection-devtools-open::after {
  content: "Protected content";
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(12, 9, 18, 0.72);
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.insights-masthead {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line);
}

.insights-masthead-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 40px;
  align-items: end;
}

.insights-masthead-copy {
  max-width: 760px;
}

.insights-masthead-title {
  max-width: 13ch;
  margin: 12px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.insights-masthead-summary {
  max-width: 38ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.insights-masthead-aside {
  display: grid;
  gap: 16px;
  padding: 0 0 8px;
  align-self: end;
}

.insights-aside-kicker {
  margin: 0;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insights-aside-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 28ch;
}

.insights-linkedin-button {
  width: fit-content;
}

.insights-feature-section {
  padding-top: 18px;
}

.insights-feature-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 18px;
}

.insights-featured-card {
  min-height: 300px;
  padding: 34px 34px 32px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.96)),
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.08), transparent 28%);
}

.insights-featured-card h2 {
  max-width: 15ch;
  margin-top: 18px;
}

.insights-featured-card p {
  max-width: 46ch;
  margin-top: 16px;
}

.insights-feature-rail {
  display: grid;
  gap: 12px;
}

.insights-rail-card {
  display: grid;
  gap: 12px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(48, 38, 50, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(21, 17, 24, 0.05);
}

.insights-rail-card strong {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.2;
}

.insights-collection-section {
  padding-top: 32px;
}

.insights-collection-grid .editorial-card {
  min-height: 0;
  padding: 28px 26px 26px;
}

.insights-collection-grid .editorial-card h3 {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.insights-follow-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.96)),
    linear-gradient(180deg, rgba(136, 41, 195, 0.025), rgba(136, 41, 195, 0.025));
}

.about-quote-card {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.featured-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

.featured-card-acorn {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

@media (max-width: 680px) {
  .featured-card-inner {
    grid-template-columns: 1fr;
  }

  .featured-card-visual {
    display: none;
  }
}

.about-editorial-signal-label {
  margin: 0 0 10px;
  color: rgba(53, 39, 57, 0.56);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-editorial-signal strong,
.about-quote-card strong {
  margin: 0;
  font-family: var(--font-body);
  max-width: 42ch;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.about-editorial-signal p,
.about-quote-card p,
.about-principle-list li {
  margin: 10px 0 0;
  max-width: 42ch;
  font-size: 0.93rem;
  line-height: 1.68;
  color: var(--ink-soft);
}

.about-quote-card p + p {
  margin-top: 10px;
}

.about-principle-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.about-principle-list li {
  position: relative;
  margin: 0;
  padding-left: 18px;
}

.about-principle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(136, 41, 195, 0.64);
}

.about-focus-grid .detail-card {
  min-height: 216px;
}

.about-focus-grid .detail-card strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.22;
}

.about-focus-grid .detail-card p {
  margin-top: 12px;
}

.about-translation-section {
  background:
    linear-gradient(180deg, rgba(93, 61, 116, 0.98), rgba(68, 44, 84, 0.98)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 30%);
}

.about-translation-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.about-translation-section .section-head {
  margin-bottom: 0;
}

.about-translation-section .section-copy {
  max-width: 38ch;
}

.about-translation-section .cross-border-board {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 236, 0.95)),
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.09), transparent 32%);
}

body[data-page="home"] .strength-grid {
  gap: 12px;
}

body[data-page="home"] .client-showcase {
  padding: 0;
  min-height: calc(40vh - 32px);
  background: #ffffff;
  border-top: 1px solid rgba(49, 37, 44, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body[data-page="home"] .client-showcase > .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 44px;
}

/* ── Home: Selected Clients section ── */
body[data-page="home"] .client-showcase-head {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 0;
  margin-bottom: 32px;
}

/* Hide "Selected Clients" label — link is enough */
body[data-page="home"] .client-showcase-title {
  display: none;
}

body[data-page="home"] .client-showcase-note {
  display: none;
}

/* "Select Clients" — clean plum text link */
body[data-page="home"] .client-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  color: var(--plum);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(136, 41, 195, 0.3);
  padding-bottom: 4px;
  transition: color 220ms ease, border-color 220ms ease, gap 220ms ease;
}

body[data-page="home"] .client-showcase-link::after {
  content: "\2192";
  display: inline-block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  background: none;
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
  line-height: 1;
  transition: transform 220ms ease;
}

body[data-page="home"] .client-showcase-link:hover,
body[data-page="home"] .client-showcase-link:focus-visible {
  color: var(--plum);
  border-color: rgba(136, 41, 195, 0.65);
  gap: 13px;
}

body[data-page="home"] .client-showcase-link:hover::after,
body[data-page="home"] .client-showcase-link:focus-visible::after {
  background: none;
  border: none;
  transform: translateX(2px);
}

/* ── Premium marquee: logos only, grayscale → color on hover, fade edges ── */
body[data-page="home"] .client-logo-marquee {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 8px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%) !important;
}

body[data-page="home"] .client-logo-marquee::before {
  display: none !important;
}

/* Pill: logo image only, no card, no name */
body[data-page="home"] .client-logo-marquee .client-logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  flex: 0 0 auto;
  padding: 12px 32px;
  cursor: pointer;
  pointer-events: auto;
}

body[data-page="home"] .client-logo-marquee .client-logo-name {
  display: none;
}

body[data-page="home"] .client-logo-marquee .client-logo-surface {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: unset;
  height: auto;
  background: transparent !important;
  border: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0;
  pointer-events: auto;
  transition: transform 220ms ease;
}

body[data-page="home"] .client-logo-marquee .client-logo-pill:hover .client-logo-surface,
body[data-page="home"] .client-logo-marquee .client-logo-pill:focus-visible .client-logo-surface {
  transform: translateY(-2px);
  border-color: transparent !important;
  box-shadow: none !important;
}

/* Grayscale by default, full color on hover — uniform height enforced */
body[data-page="home"] .client-logo-marquee .client-logo-image {
  filter: grayscale(1) opacity(0.65);
  transition: filter 300ms ease;
  height: 32px !important;
  max-height: 32px !important;
  width: auto !important;
  max-width: none !important;
}

body[data-page="home"] .client-logo-marquee .client-logo-pill:hover .client-logo-image,
body[data-page="home"] .client-logo-marquee .client-logo-pill:focus-visible .client-logo-image {
  filter: grayscale(0) opacity(1);
}

body[data-page="home"] .client-logo-marquee .client-logo-image--safire {
  mix-blend-mode: normal;
  height: 24px !important;
  max-height: 24px !important;
}

/* Dr. Different: ×0.6 (2x smaller than ×1.2) */
body[data-page="home"] .client-logo-marquee .client-logo-image--drdifferent {
  height: 19px !important;
  max-height: 19px !important;
}

/* SK Hynix: ×1.5, centered, white bg blended */
body[data-page="home"] .client-logo-marquee .client-logo-image--skhynix {
  height: 48px !important;
  max-height: 48px !important;
  display: block;
  margin: 0 auto;
  object-position: center;
  mix-blend-mode: multiply;
}

/* Xcena: centered */
body[data-page="home"] .client-logo-marquee .client-logo-image--xcena {
  display: block;
  margin: 0 auto;
  object-position: center;
}

/* Dnotitia: ×1.3 */
body[data-page="home"] .client-logo-marquee .client-logo-image--dnotitia {
  height: 42px !important;
  max-height: 42px !important;
  width: auto !important;
  max-width: none !important;
}

/* Meebak: ×0.8 */
body[data-page="home"] .client-logo-marquee .client-logo-image--meebak {
  height: 26px !important;
  max-height: 26px !important;
}

/* Inauguration: ×1.3 */
body[data-page="home"] .client-logo-marquee .client-logo-image--icon {
  height: 42px !important;
  max-height: 42px !important;
}

/* ImpriMed: ×1.2 */
body[data-page="home"] .client-logo-marquee .client-logo-image--imprimed {
  height: 38px !important;
  max-height: 38px !important;
}

/* Dencomm: ×0.9 */
body[data-page="home"] .client-logo-marquee .client-logo-image--dencomm {
  height: 29px !important;
  max-height: 29px !important;
}

/* Sendbird, RLWrld, Bear Robotics: 2x size */
body[data-page="home"] .client-logo-marquee .client-logo-image--sendbird,
body[data-page="home"] .client-logo-marquee .client-logo-image--rlwrld,
body[data-page="home"] .client-logo-marquee .client-logo-image--rlwrld-marquee,
body[data-page="home"] .client-logo-marquee .client-logo-image--bear {
  height: 64px !important;
  max-height: 64px !important;
}

/* RLWrld: remove teal bg */
body[data-page="home"] .client-logo-marquee .client-logo-surface--rlwrld {
  background: transparent !important;
  border-radius: 0 !important;
}

/* Upstage: grayscale the wordmark (non-img component) */
body[data-page="home"] .client-logo-marquee .logo-wordmark--upstage {
  filter: grayscale(1) opacity(0.65);
  transition: filter 300ms ease;
}

body[data-page="home"] .client-logo-marquee .client-logo-pill:hover .logo-wordmark--upstage,
body[data-page="home"] .client-logo-marquee .client-logo-pill:focus-visible .logo-wordmark--upstage {
  filter: grayscale(0) opacity(1);
}

body[data-page="home"] .home-testimonial-section {
  padding-top: 12px;
  padding-bottom: 26px;
  background:
    linear-gradient(180deg, rgba(248, 243, 236, 0.82) 0%, rgba(248, 243, 236, 0.18) 100%),
    radial-gradient(circle at top left, rgba(136, 41, 195, 0.08), transparent 34%);
}

body[data-page="home"] .home-testimonial-shell {
  position: relative;
  display: grid;
  gap: 30px;
}

body[data-page="home"] .home-testimonial-head {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
}

body[data-page="home"] .home-testimonial-head h2 > span,
body[data-page="home"] .home-testimonial-head .section-copy > span,
body[data-page="home"] .testimonial-proof-quote > span {
  display: block;
}

body[data-page="home"] .home-testimonial-head .section-copy {
  max-width: 60ch;
  margin-inline: auto;
}

html[lang="en"] body[data-page="home"] .home-testimonial-head .section-copy,
body[data-language="en"][data-page="home"] .home-testimonial-head .section-copy {
  max-width: 72ch;
}

@media (min-width: 1180px) {
  html[lang="ko"] body[data-page="home"] .home-testimonial-head,
  body[data-language="ko"][data-page="home"] .home-testimonial-head {
    max-width: 920px;
  }

  html[lang="ko"] body[data-page="home"] .home-testimonial-head h2 > span[lang="ko"],
  body[data-language="ko"][data-page="home"] .home-testimonial-head h2 > span[lang="ko"] {
    font-size: 0.72em;
    letter-spacing: -0.05em;
    white-space: nowrap;
    text-wrap: nowrap;
    word-break: keep-all;
  }
}

.testimonial-proof-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  padding: 6px 0 12px;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.testimonial-proof-marquee::-webkit-scrollbar {
  display: none;
}

.testimonial-proof-track {
  display: block;
  width: max-content;
  animation: none;
  will-change: auto;
}

.testimonial-proof-row {
  display: flex;
  gap: 24px;
  width: max-content;
  align-items: stretch;
  padding-bottom: 2px;
}

.testimonial-proof-card {
  flex: 0 0 min(560px, calc(100vw - 52px));
  width: min(560px, calc(100vw - 52px));
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 28px 26px;
  border: 1px solid rgba(118, 84, 142, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 235, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 16px rgba(32, 22, 38, 0.035);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  color: inherit;
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.testimonial-proof-card:hover,
.testimonial-proof-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(136, 41, 195, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 20px rgba(32, 22, 38, 0.05);
}

.testimonial-proof-card:focus-visible {
  outline: 2px solid rgba(136, 41, 195, 0.26);
  outline-offset: 4px;
}

.testimonial-proof-brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.testimonial-proof-logo {
  display: block;
  width: auto;
  max-width: 148px;
  height: 26px;
  max-height: 26px;
  object-fit: contain;
  object-position: left center;
}

.testimonial-proof-card--imprimed .testimonial-proof-logo {
  max-width: 88px;
  height: 34px;
  max-height: 34px;
}

.testimonial-proof-context {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 12px;
  border: 1px solid rgba(118, 84, 142, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  color: rgba(63, 44, 74, 0.64);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 auto;
}

.testimonial-proof-quote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.18vw, 1.12rem);
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: -0.018em;
  text-wrap: pretty;
}

.testimonial-proof-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(53, 39, 57, 0.08);
}

.testimonial-proof-footer--with-portrait {
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
}

.testimonial-proof-media {
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(244, 241, 236, 0.96), rgba(239, 235, 229, 0.96));
  border: 1px solid rgba(118, 84, 142, 0.12);
}

.testimonial-proof-portrait {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.testimonial-proof-attribution {
  display: grid;
  gap: 4px;
}

.testimonial-proof-footer--with-portrait .testimonial-proof-attribution {
  min-width: 0;
  align-content: start;
}

.testimonial-proof-attribution strong {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.25;
}

.testimonial-proof-attribution p {
  margin: 0;
  color: rgba(63, 44, 74, 0.68);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-graphic--industry h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.hero-industry-cloud {
  padding: 0;
}

body[data-page="clients"] .hero-industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 30px 0 0;
  align-content: flex-start;
}

.hero-graphic--industry .client-industry-bubble {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

body[data-page="clients"] .hero-graphic--industry .client-industry-bubble {
  position: static;
  animation: industryBubbleDrift var(--float-duration, 15s) ease-in-out infinite alternate;
  animation-delay: var(--float-delay, 0s);
}

body[data-page="clients"] .hero-graphic--industry {
  display: flex;
  flex-direction: column;
  align-self: center;
  min-height: 0;
  padding: 28px 22px 30px;
}

.hero-graphic-title {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-graphic h2 {
  margin: 0;
  max-width: 16ch;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.services-hero-summary-line,
.services-hero-graphic-line {
  display: inline;
}

html[lang="ko"] body[data-page="services"] .services-hero-summary-ko,
html[lang="ko"] body[data-page="services"] .services-hero-graphic-heading-ko {
  display: block;
}

html[lang="ko"] body[data-page="services"] .services-hero-summary-line,
html[lang="ko"] body[data-page="services"] .services-hero-graphic-line {
  display: block;
  white-space: nowrap;
}

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

.strength-card {
  position: relative;
  min-height: 150px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.strength-card::before {
  content: none;
}

body[data-page="home"] .strength-card {
  min-height: 0;
  padding: 20px 18px 22px;
}

body[data-page="home"] .strength-label {
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
}

body[data-page="home"] .strength-title {
  font-size: 1.05rem;
  line-height: 1.28;
}

body[data-page="home"] .strength-title-en--compact {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.94em;
  letter-spacing: -0.02em;
}

body[data-page="home"] .strength-text {
  margin-top: 8px;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.strength-scroll-hint {
  display: none;
}


.strength-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 22px rgba(26, 18, 34, 0.14);
}

.strength-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strength-icon--access {
  background: linear-gradient(135deg, rgba(175, 114, 219, 0.96) 0%, rgba(136, 41, 195, 0.96) 100%);
  border-color: rgba(230, 205, 247, 0.22);
}

.strength-icon--crossborder {
  background: linear-gradient(135deg, rgba(149, 123, 214, 0.96) 0%, rgba(102, 86, 180, 0.96) 100%);
  border-color: rgba(220, 213, 248, 0.22);
}

.strength-icon--discreet {
  background: linear-gradient(135deg, rgba(133, 116, 190, 0.96) 0%, rgba(104, 88, 156, 0.96) 100%);
  border-color: rgba(214, 206, 238, 0.2);
}

.strength-icon--intelligence {
  background: linear-gradient(135deg, rgba(192, 143, 212, 0.96) 0%, rgba(143, 96, 178, 0.96) 100%);
  border-color: rgba(232, 213, 241, 0.22);
}

.strength-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.strength-title {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.strength-text {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.81rem;
  line-height: 1.46;
}

.route-graphic {
  position: relative;
}

.route-stage {
  position: relative;
  min-height: 220px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.route-node {
  position: absolute;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-node-korea {
  top: 28px;
  left: 0;
}

.route-node-us {
  right: 0;
  bottom: 28px;
}

.route-line {
  position: absolute;
  top: 50%;
  left: 92px;
  right: 92px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.58));
  transform: translateY(-50%);
}

.route-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(185, 138, 58, 0.12);
  transform: translateY(-50%);
  animation: routePulse 4.8s linear infinite;
}

.route-label {
  position: absolute;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-label-top {
  top: 18px;
  right: 110px;
}

.route-label-bottom {
  bottom: 18px;
  left: 128px;
}

.hero-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-metric {
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

body[data-page="services"] .hero-metric {
  padding: 20px 0 18px;
}

body[data-page="services"] .hero-metric strong {
  text-align: center;
}

.hero-metric strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 600;
}

.hero-metric > strong > span {
  display: block;
  color: inherit;
}

.hero-metric-detail {
  display: block;
  margin-top: 10px;
}

.hero-metric-detail-text {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body[data-page="services"] .hero-metric-detail-text[lang="en"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

body[data-page="services"] .hero-metric-detail-text[lang="ko"] {
  display: grid;
  grid-template-columns: max-content;
  justify-content: center;
  justify-items: center;
  gap: 8px;
}

.hero-metric-keyline {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

body[data-page="services"] .hero-metric-detail-text[lang="en"] .hero-metric-keyline {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.71rem;
  letter-spacing: 0.01em;
  box-sizing: border-box;
  line-height: 1.24;
  text-align: center;
  white-space: normal;
  text-wrap: balance;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 24px rgba(20, 9, 36, 0.08);
}

body[data-page="services"] .hero-metric-detail-text[lang="ko"] .hero-metric-keyline {
  justify-content: center;
}

.client-showcase {
  padding: 14px 0 8px;
  background: var(--paper);
}

.client-industry-band {
  padding-bottom: 10px;
  background:
    radial-gradient(circle at top left, rgba(136, 41, 195, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(107, 77, 129, 0.12) 0%, rgba(246, 241, 234, 0) 100%);
}

.section-head-compact {
  margin-bottom: 24px;
}

.client-industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  align-items: center;
  padding: 6px 0 10px;
}

.client-industry-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(53, 39, 57, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(25, 19, 25, 0.82);
  box-shadow: 0 18px 34px rgba(24, 17, 25, 0.07);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  animation: industryFloat 9s ease-in-out infinite;
}

.client-industry-bubble--preserve-case {
  text-transform: none;
  letter-spacing: 0.02em;
}

html[lang="en"] body[data-page="clients"] .client-industry-bubble:not(.client-industry-bubble--more),
body[data-language="en"][data-page="clients"] .client-industry-bubble:not(.client-industry-bubble--more) {
  text-transform: none;
  letter-spacing: 0.02em;
}

.client-industry-bubble--large {
  padding-inline: 24px;
}

.client-industry-bubble--medium {
  padding-inline: 22px;
}

.client-industry-bubble--small {
  padding-inline: 18px;
}

.client-industry-bubble--more {
  opacity: 0.45;
  letter-spacing: 0.12em;
  padding-inline: 14px;
  pointer-events: none;
}

.client-industry-bubble:nth-child(2) {
  animation-delay: -1.4s;
}

.client-industry-bubble:nth-child(3) {
  animation-delay: -3.2s;
}

.client-industry-bubble:nth-child(4) {
  animation-delay: -2.1s;
}

.client-industry-bubble:nth-child(5) {
  animation-delay: -4.4s;
}

.client-industry-bubble:nth-child(6) {
  animation-delay: -2.9s;
}

.client-industry-bubble:nth-child(7) {
  animation-delay: -5.1s;
}

.client-industry-bubble:nth-child(8) {
  animation-delay: -3.8s;
}

@keyframes industryBubbleDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(calc(var(--float-x, 0) * 0.48), calc(var(--float-y, 0) * 0.48), 0);
  }
  100% {
    transform: translate3d(var(--float-x, 0), var(--float-y, 0), 0);
  }
}

.client-showcase-shell {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.client-showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 18px;
  padding-inline: 4px;
}

.client-showcase-copy {
  flex: 1 1 auto;
  max-width: none;
}

.client-showcase-actions {
  display: flex;
  gap: 12px;
  margin-top: 0;
  flex: 0 0 auto;
}

.client-showcase-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.45vw, 1.56rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  white-space: nowrap;
}

.client-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: var(--plum);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.client-showcase-link::after {
  content: "\2192";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(136, 41, 195, 0.14);
  border-radius: 999px;
  background: rgba(136, 41, 195, 0.08);
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.client-showcase-link:hover,
.client-showcase-link:focus-visible {
  color: #7020a8;
  transform: translateX(2px);
}

.client-showcase-link:hover::after,
.client-showcase-link:focus-visible::after {
  border-color: rgba(136, 41, 195, 0.24);
  background: rgba(136, 41, 195, 0.14);
  transform: translateX(1px);
}

.client-showcase-link:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 4px;
  border-radius: 4px;
}

.client-showcase-note {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.58;
}

@media (max-width: 1320px) {
  body[data-page="home"] .page-hero {
    padding: 48px 0 48px;
  }

  body[data-page="home"] .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(388px, 0.98fr);
    gap: 28px;
  }

  body[data-page="home"] .hero-title {
    font-size: clamp(2.18rem, 3.8vw, 3.64rem);
  }

  body[data-page="home"] .hero-summary {
    max-width: 28ch;
  }

  html[lang="en"] body[data-page="home"] .hero-summary {
    max-width: 34ch;
    font-size: clamp(0.94rem, 1.1vw, 1.02rem);
  }

  body[data-page="home"] .hero-note {
    max-width: 44ch;
    font-size: 0.84rem;
  }

  body[data-page="home"] .strength-card {
    min-height: 134px;
    padding: 13px;
  }

  body[data-page="home"] .strength-icon {
    width: 42px;
    height: 42px;
  }

  body[data-page="home"] .strength-icon svg {
    width: 21px;
    height: 21px;
  }

  body[data-page="home"] .strength-title {
    font-size: 0.92rem;
  }

  body[data-page="home"] .strength-text {
    font-size: 0.74rem;
  }

  body[data-page="home"] .client-showcase {
    min-height: unset;
  }

  body[data-page="home"] .client-showcase > .container {
    padding-top: 32px;
    padding-bottom: 24px;
  }

  body[data-page="home"] .client-showcase-shell {
    padding: 0;
  }

  body[data-page="home"] .client-showcase-title {
    font-size: 1.34rem;
  }

  .testimonial-proof-card {
    flex-basis: min(560px, calc(100vw - 44px));
    width: min(560px, calc(100vw - 44px));
  }
}

.client-logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0 14px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, rgba(249, 244, 238, 0.88) 100%),
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.08), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 32px rgba(35, 27, 39, 0.06);
  mask-image: none;
  -webkit-mask-image: none;
}

.client-logo-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(118, 84, 142, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

/* WCAG 2.2.2: pause moving content on hover/focus */
.client-logo-marquee:hover .client-logo-track,
.client-logo-marquee:focus-within .client-logo-track {
  animation-play-state: paused;
}


.client-showcase .client-logo-surface--dnotitia,
.client-showcase .client-logo-surface--safire {
  padding-inline: 12px;
}

.client-showcase .client-logo-surface--dnotitia {
  padding-block: 9px;
}


.client-showcase .client-logo-image--xcena {
  max-height: 46px;
}

.client-showcase .client-logo-image--xcena-full {
  width: 100%;
  max-width: 212px;
}

.client-showcase .client-logo-image--dnotitia {
  width: auto;
  max-width: 278px;
  max-height: 75px;
}

.client-showcase .client-logo-image--safire {
  width: 100%;
  max-width: 214px;
  max-height: 48px;
}

.client-showcase .client-logo-image--rlwrld-marquee {
  width: 100%;
  max-width: none;
  max-height: 86px;
  object-fit: contain;
}

.client-showcase .client-logo-surface--rlwrld {
  padding: 4px 12px;
}

.client-showcase .client-logo-image--sendbird {
  width: auto;
  max-width: 208px;
  max-height: 55px;
}

.client-logo-track {
  display: flex;
  width: max-content;
  animation: logoTicker var(--logo-ticker-duration, 36s) linear infinite;
  will-change: transform;
}

.client-logo-row {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.client-logo-row[aria-hidden="true"] .client-logo-pill {
  pointer-events: auto;
}

.client-logo-pill {
  display: grid;
  gap: 10px;
  width: 196px;
  flex: 0 0 196px;
  color: inherit;
  text-decoration: none;
}

.client-logo-pill:hover .client-logo-surface,
.client-logo-pill:focus-visible .client-logo-surface {
  transform: translateY(-2px);
  border-color: rgba(136, 41, 195, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 36px rgba(22, 18, 27, 0.08);
}

.client-logo-pill:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
  border-radius: 26px;
}

.client-logo-surface {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 94px;
  padding: 18px 22px;
  border: 1px solid rgba(49, 37, 44, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(249, 244, 238, 0.99) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.client-logo-surface--rlwrld {
  border-color: transparent;
  background: #50eace;
  box-shadow: none;
}

.client-logo-surface--dnotitia,
.client-logo-surface--safire {
  padding-inline: 18px;
}

.client-logo-marquee--hero {
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  padding: 0;
}

.client-logo-pill--hero {
  width: 168px;
  flex-basis: 168px;
  gap: 0;
}

.client-logo-pill--hero .client-logo-name {
  display: none;
}

.client-logo-pill--hero .client-logo-surface {
  min-height: 64px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.client-logo-pill--hero .client-logo-surface--rlwrld {
  border-color: transparent;
  background: #50eace;
  box-shadow: none;
}

.client-logo-image,
.client-logo-svg {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
}

.client-logo-image--wide {
  max-height: 38px;
}

.client-logo-image--compact {
  max-height: 30px;
}

.client-logo-image--icon {
  max-height: 54px;
}

.client-logo-image--rlwrld {
  max-height: 54px;
  image-rendering: auto;
}

.client-logo-image--rlwrld-marquee {
  max-height: 78px;
}

.client-logo-image--blend {
  mix-blend-mode: multiply;
}

.client-logo-image--invert {
  filter: invert(1);
}

.client-logo-image--imprimed {
  max-height: 42px;
}

.client-logo-image--dnotitia {
  width: 82%;
  max-width: 156px;
  max-height: 34px;
}

.client-logo-image--bear {
  max-height: 42px;
}

.client-logo-image--hopae {
  width: 82%;
  max-width: 172px;
  max-height: 34px;
}

.client-logo-image--skhynix {
  max-height: 36px;
}

.client-logo-image--xcena {
  max-height: 31px;
}

.client-logo-image--xcena-full {
  width: 90%;
  max-width: 182px;
}

.client-logo-image--safire {
  width: 96%;
  max-width: 196px;
  max-height: 42px;
}

.client-logo-image--sendbird {
  width: 90%;
  max-width: 174px;
  max-height: 42px;
}

.logo-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  white-space: nowrap;
}

.logo-wordmark-text {
  display: inline-block;
  color: #1f2430;
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.logo-wordmark--upstage .logo-wordmark-text {
  color: #584779;
  text-transform: lowercase;
}

.logo-wordmark--bear {
  gap: 14px;
}

.logo-wordmark-text-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 0.92;
}

.logo-wordmark-title {
  color: #2db9e7;
  font-size: 1.46rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.logo-wordmark-subtitle {
  margin-top: 4px;
  color: #2db9e7;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-wordmark--hopae .logo-wordmark-text {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: lowercase;
}

.logo-inline-symbol {
  display: block;
  width: auto;
  height: auto;
  flex: 0 0 auto;
}

.logo-inline-symbol--upstage {
  width: 28px;
}

.logo-inline-symbol--bear {
  width: 42px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(29%) saturate(6378%) hue-rotate(161deg) brightness(96%) contrast(91%);
}

.logo-inline-symbol--hopae {
  width: 24px;
}

.client-logo-name {
  color: rgba(23, 17, 27, 0.78);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.45;
  min-height: 1.45em;
  padding: 0 4px;
}

.client-roster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.client-roster-grid > #imprimed-testimonial {
  order: -20;
}

.client-roster-grid > #xcena-testimonial {
  order: -19;
}

body[data-page="clients"] section[data-reveal-start="scroll"] {
  padding-bottom: 24px;
}

body[data-page="clients"] section[data-reveal-start="scroll"] + .section.section-dark {
  padding-top: 24px;
}

body[data-page="clients"] .section-head {
  max-width: 980px;
}

.client-roster-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 236, 0.96)),
    linear-gradient(180deg, rgba(136, 41, 195, 0.03), rgba(136, 41, 195, 0.03));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.client-roster-card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.client-roster-card-link::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(136, 41, 195, 0.14);
  border-radius: 9px;
  background-color: rgba(136, 41, 195, 0.09);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M4.25 9.75L9.75 4.25M5.5 4.25H9.75V8.5' stroke='%235A376E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 20px rgba(136, 41, 195, 0.08);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 220ms ease;
}

.client-roster-card:hover,
.client-roster-card:focus-within {
  border-color: rgba(136, 41, 195, 0.22);
  box-shadow:
    0 22px 44px rgba(29, 19, 36, 0.1),
    0 0 0 1px rgba(136, 41, 195, 0.08);
}

.client-roster-card:hover .client-roster-card-link,
.client-roster-card:focus-within .client-roster-card-link {
  transform: translateY(-2px);
}

.client-roster-card:hover .client-roster-card-link::after,
.client-roster-card:focus-within .client-roster-card-link::after {
  opacity: 1;
  transform: translateY(0);
}

.client-roster-card:hover .client-logo-surface,
.client-roster-card:focus-within .client-logo-surface {
  border-color: rgba(136, 41, 195, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 16px 28px rgba(136, 41, 195, 0.08);
}

.client-roster-card .client-logo-surface {
  min-height: 104px;
  padding: 20px 24px;
  margin-bottom: 18px;
  justify-content: center;
}

.client-roster-card .client-logo-surface--rlwrld {
  min-height: 104px;
  padding: 8px 16px;
}

.client-roster-card .client-logo-surface--dnotitia,
.client-roster-card .client-logo-surface--safire {
  padding-inline: 12px;
}

.client-roster-card .client-logo-surface--sendbird {
  min-height: 96px;
  padding-block: 16px;
}

.client-roster-card--prospect {
  position: relative;
  border-color: rgba(136, 41, 195, 0.24);
  background:
    radial-gradient(circle at 84% 18%, rgba(196, 140, 255, 0.24), transparent 32%),
    radial-gradient(circle at 14% 100%, rgba(136, 41, 195, 0.18), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(185, 138, 58, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(249, 240, 255, 0.98), rgba(241, 226, 251, 0.98));
  box-shadow:
    0 22px 44px rgba(41, 23, 55, 0.1),
    0 0 0 1px rgba(136, 41, 195, 0.06);
}

.client-roster-card--prospect .client-roster-card-link {
  color: inherit;
}

.client-roster-card--prospect .client-roster-card-link::after {
  display: none;
}

.client-roster-card .client-logo-surface--prospect {
  position: relative;
  min-height: 104px;
  justify-content: center;
  padding: 0 22px;
  border-color: rgba(136, 41, 195, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(249, 244, 238, 0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(136, 41, 195, 0.06);
}

.client-prospect-wordmark {
  position: relative;
  z-index: 1;
  display: block;
  color: #71418f;
  font-family: var(--font-display);
  font-size: clamp(1.62rem, 2.08vw, 1.94rem);
  font-weight: 600;
  font-style: normal;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.66);
}

.client-roster-card--prospect:hover,
.client-roster-card--prospect:focus-within {
  border-color: rgba(136, 41, 195, 0.32);
  box-shadow:
    0 24px 48px rgba(41, 23, 55, 0.12),
    0 0 0 1px rgba(136, 41, 195, 0.1);
}

.client-roster-card--prospect:hover .client-logo-surface--prospect,
.client-roster-card--prospect:focus-within .client-logo-surface--prospect {
  border-color: rgba(136, 41, 195, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 30px rgba(136, 41, 195, 0.09);
}

.client-roster-card--prospect h3 {
  color: #5f2d82;
}

.client-roster-card--prospect .client-roster-note {
  color: rgba(74, 50, 92, 0.9);
}

.client-roster-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
}

.client-roster-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  min-height: 0;
  display: block;
  overflow: visible;
}

.client-roster-note-segment {
  display: block;
}

.client-roster-note-segment + .client-roster-note-segment {
  margin-top: 0.34em;
}

.client-roster-testimonial {
  margin-top: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(118, 84, 142, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 235, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 28px rgba(35, 27, 39, 0.05);
}

.client-roster-testimonial-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(90, 55, 110, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-roster-testimonial-quote {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.66;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.client-roster-testimonial-segment {
  display: block;
}

.client-roster-testimonial-segment + .client-roster-testimonial-segment {
  margin-top: 0.82em;
}

.client-roster-testimonial-meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(53, 39, 57, 0.08);
}

.client-roster-testimonial-meta--with-portrait {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.client-roster-testimonial-avatar {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(118, 84, 142, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 239, 234, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 20px rgba(35, 27, 39, 0.07);
}

.client-roster-testimonial-person {
  min-width: 0;
}

.client-roster-testimonial-meta strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.24;
}

.client-roster-testimonial-meta p {
  margin: 4px 0 0;
  color: rgba(63, 44, 74, 0.68);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.client-roster-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-end;
  align-items: flex-end;
  gap: 8px 10px;
  margin-top: auto;
  padding-top: 18px;
  min-height: 76px;
}

.client-roster-meta--wrapped {
  justify-content: flex-start;
}

.client-roster-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 34px;
  max-width: 100%;
  padding: 6px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.065em;
  text-align: center;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.client-roster-card .client-logo-image,
.client-roster-card .client-logo-svg {
  transform-origin: center center;
}

.client-roster-card .client-logo-image--wide {
  width: 78%;
  max-width: 178px;
  max-height: 36px;
}

.client-roster-card .client-logo-image--rlwrld {
  width: 100%;
  max-width: none;
  max-height: 72px;
  object-fit: contain;
}

.client-roster-card .client-logo-image--dnotitia {
  width: 100%;
  max-width: 214px;
  max-height: 58px;
}

.client-roster-card .client-logo-image--sendbird {
  width: 100%;
  max-width: 258px;
  max-height: 66px;
}

.client-roster-card .client-logo-image--safire {
  width: 78%;
  max-width: 166px;
  max-height: 34px;
}

.client-roster-card .client-logo-image--xcena {
  max-height: 46px;
}

.client-roster-card .client-logo-image--xcena-full {
  width: 100%;
  max-width: 212px;
}

.client-roster-card .client-logo-image--skhynix {
  width: 96%;
  max-width: 252px;
  max-height: 54px;
}

.client-roster-card .client-logo-image--hopae {
  width: 76%;
  max-width: 170px;
  max-height: 34px;
}

.client-roster-card .client-logo-image--imprimed {
  width: 72%;
  max-width: 160px;
  max-height: 38px;
}

.client-roster-card .logo-wordmark {
  width: 78%;
  max-width: 182px;
  justify-content: center;
}

.client-roster-card .logo-wordmark--bear {
  width: 80%;
  max-width: 182px;
}

.client-roster-card .client-logo-image--bear {
  max-height: 52px;
  width: 80%;
  max-width: 210px;
  object-fit: contain;
}

.client-roster-card .logo-wordmark--upstage .logo-wordmark-text {
  font-size: 1.28rem;
}

.client-roster-card .logo-inline-symbol--upstage {
  width: 26px;
}

.client-roster-card .logo-inline-symbol--bear {
  width: 38px;
}

@keyframes industryFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

.section {
  padding: 76px 0;
}

.section-tight {
  padding-top: 56px;
}

.section-dark {
  background: linear-gradient(180deg, rgba(102, 66, 126, 0.98), rgba(76, 49, 95, 0.98));
  color: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-kicker,
.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.section-dark .mini-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.section-kicker::before,
.mini-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h2,
h3,
h4 {
  letter-spacing: -0.03em;
}

h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.022em;
}

h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}

h3 {
  font-size: 1.32rem;
  letter-spacing: -0.018em;
}

h4 {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html[lang="ko"] h1,
html[lang="ko"] h2,
html[lang="ko"] h3 {
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

html[lang="ko"] .hero-title > span[lang="ko"],
html[lang="ko"] .section-head h1 > span[lang="ko"],
html[lang="ko"] .section-head h2 > span[lang="ko"],
html[lang="ko"] .about-editorial-title > span[lang="ko"],
html[lang="ko"] .about-philosophy-head h2 > span[lang="ko"],
html[lang="ko"] .conversion-band h2 > span[lang="ko"],
html[lang="ko"] .contact-sidebar-title > span[lang="ko"],
html[lang="ko"] .contact-form-head h1 > span[lang="ko"],
html[lang="ko"] .contact-form-head h2 > span[lang="ko"],
html[lang="ko"] .blog-masthead-title > span[lang="ko"] {
  display: block;
  font-size: 0.78em;
  line-height: 1.18;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

html[lang="ko"] .about-editorial-title,
html[lang="ko"] .about-philosophy-head h2 {
  min-height: 3.3em;
}

html[lang="ko"] .about-philosophy-title-ko {
  display: block;
  word-break: keep-all;
}

html[lang="ko"] .about-editorial-title-ko {
  display: block;
  word-break: keep-all;
}

html[lang="ko"] .about-founder-led-title-ko {
  display: block;
  word-break: keep-all;
}

html[lang="ko"] .about-signal-intro-ko {
  display: block;
  word-break: keep-all;
}

html[lang="ko"] .about-translation-copy-ko {
  display: block;
  word-break: keep-all;
}

html[lang="ko"] .about-translation-copy-closer {
  margin-top: 0.8em;
}

html[lang="ko"] .board-title-ko-fixed {
  display: block;
  word-break: keep-all;
}

html[lang="ko"] .about-philosophy-copy-ko {
  display: block;
  word-break: keep-all;
}

html[lang="ko"] .services-lifecycle-copy-ko {
  display: block;
  word-break: keep-all;
}

html[lang="ko"] .about-translation-copy-ko .ko-fixed-line,
html[lang="ko"] .board-title-ko-fixed .ko-fixed-line,
html[lang="ko"] .about-signal-intro-ko .ko-fixed-line,
html[lang="ko"] .about-founder-led-title-ko .ko-fixed-line,
html[lang="ko"] .about-editorial-title-ko .ko-fixed-line,
html[lang="ko"] .about-philosophy-title-ko .ko-fixed-line,
html[lang="ko"] .services-lifecycle-copy-ko .ko-fixed-line,
html[lang="ko"] .tyrian-mobile-copy-ko .ko-fixed-line,
html[lang="ko"] .tyrian-mobile-bullet-ko .ko-fixed-line {
  display: block;
  white-space: nowrap;
}

html[lang="ko"] .about-philosophy-copy-ko .ko-fixed-line {
  display: block;
  white-space: nowrap;
}

html[lang="ko"] .blog-masthead-summary .ko-fixed-line,
html[lang="ko"] .blog-linkedin-desc .ko-fixed-line {
  display: block;
  white-space: nowrap;
}

html[lang="en"] body[data-page="home"] .hero-summary .en-fixed-line {
  display: block;
  white-space: nowrap;
}

html[lang="en"] body[data-page="insights"] .blog-masthead-summary .en-fixed-line + .en-fixed-line::before {
  content: " ";
}

@media (min-width: 1180px) {
  html[lang="en"] body[data-page="insights"] .blog-masthead-summary {
    max-width: 74ch;
  }

  html[lang="en"] body[data-page="insights"] .blog-masthead-summary .en-fixed-line {
    display: block;
    white-space: nowrap;
  }

  html[lang="en"] body[data-page="insights"] .blog-masthead-summary .en-fixed-line + .en-fixed-line::before {
    content: none;
  }
}

.ko-phrase-break {
  display: none;
}

html[lang="ko"] .ko-phrase-break {
  display: block;
}

html[lang="ko"] .hero-summary > span[lang="ko"],
html[lang="ko"] .hero-note > span[lang="ko"],
html[lang="ko"] .strength-text > span[lang="ko"],
html[lang="ko"] .section-copy > span[lang="ko"],
html[lang="ko"] .body-copy > span[lang="ko"],
html[lang="ko"] .about-editorial-summary > span[lang="ko"],
html[lang="ko"] .about-editorial-signal strong > span[lang="ko"],
html[lang="ko"] .about-editorial-signal p > span[lang="ko"],
html[lang="ko"] .about-quote-card strong > span[lang="ko"],
html[lang="ko"] .about-quote-card p > span[lang="ko"],
html[lang="ko"] .founder-focus > span[lang="ko"],
html[lang="ko"] .founder-summary p > span[lang="ko"],
html[lang="ko"] .detail-card p > span[lang="ko"],
html[lang="ko"] .service-card p > span[lang="ko"],
html[lang="ko"] .content-panel p > span[lang="ko"],
html[lang="ko"] .launch-card p > span[lang="ko"],
html[lang="ko"] .client-roster-note > span[lang="ko"],
html[lang="ko"] .blog-masthead-summary > span[lang="ko"],
html[lang="ko"] .blog-linkedin-desc > span[lang="ko"],
html[lang="ko"] .blog-featured-title > span[lang="ko"],
html[lang="ko"] .blog-featured-excerpt > span[lang="ko"],
html[lang="ko"] .blog-card-title > span[lang="ko"],
html[lang="ko"] .blog-card-excerpt > span[lang="ko"],
html[lang="ko"] .contact-sidebar-desc > span[lang="ko"],
html[lang="ko"] .contact-sidebar-subcopy > span[lang="ko"],
html[lang="ko"] .contact-checklist li > span[lang="ko"],
html[lang="ko"] .contact-checklist-note > span[lang="ko"],
html[lang="ko"] .contact-sidebar-call-desc > span[lang="ko"],
html[lang="ko"] .contact-sidebar-call-note > span[lang="ko"],
html[lang="ko"] .contact-form-intro > span[lang="ko"] {
  text-wrap: pretty;
}

html[lang="ko"] .team-section-head .section-copy > span[lang="ko"],
html[lang="ko"] .founder-focus > span[lang="ko"],
html[lang="ko"] .founder-summary p > span[lang="ko"] {
  word-break: keep-all;
}

html[lang="ko"] .founder-focus > span[lang="ko"] {
  text-wrap: balance;
}

@media (max-width: 820px) {
  html[lang="ko"] .ko-phrase-break {
    display: none;
  }

  html[lang="ko"] body[data-page="home"] .home-hero-note-ko {
    font-size: clamp(0.76rem, 3.3vw, 0.84rem);
    line-height: 1.5;
    letter-spacing: -0.03em;
  }

  html[lang="ko"] .about-philosophy-title-ko .ko-fixed-line {
    white-space: normal;
  }

  html[lang="ko"] .about-editorial-title-ko .ko-fixed-line {
    white-space: normal;
  }

  html[lang="ko"] .about-translation-copy-ko .ko-fixed-line,
  html[lang="ko"] .board-title-ko-fixed .ko-fixed-line,
  html[lang="ko"] .about-signal-intro-ko .ko-fixed-line,
  html[lang="ko"] .about-founder-led-title-ko .ko-fixed-line {
    white-space: normal;
  }

  html[lang="ko"] .about-philosophy-copy-ko .ko-fixed-line {
    white-space: normal;
  }

  html[lang="ko"] .services-lifecycle-copy-ko .ko-fixed-line {
    white-space: normal;
  }

  html[lang="ko"] .services-lifecycle-copy-ko .ko-fixed-line-mobile {
    white-space: nowrap;
  }

  html[lang="ko"] .services-lifecycle-copy-ko .ko-fixed-line-mobile-gap {
    margin-top: 10px;
  }

  html[lang="ko"] .tyrian-mobile-copy-ko .ko-fixed-line,
  html[lang="ko"] .tyrian-mobile-bullet-ko .ko-fixed-line {
    white-space: normal;
  }

  html[lang="ko"] .services-posthire-title-ko .ko-fixed-line,
  html[lang="ko"] .services-posthire-copy-ko .ko-fixed-line {
    display: block;
    white-space: nowrap;
  }

  html[lang="ko"] body[data-page="services"] .services-posthire-title-ko {
    font-size: 0.95em;
    line-height: 1.34;
    letter-spacing: -0.02em;
  }

  html[lang="ko"] body[data-page="services"] .services-posthire-copy-ko {
    font-size: 0.92rem;
    line-height: 1.58;
    letter-spacing: -0.02em;
  }
}

.section-copy,
.body-copy,
.detail-card p,
.service-card p,
.editorial-card p,
.insight-card p,
.category-card p,
.content-panel p,
.mandate-card p,
.contact-panel p,
.launch-card p {
  color: var(--ink-soft);
}

.section-dark .section-copy,
.section-dark .body-copy,
.section-dark .detail-card p,
.section-dark .service-card p,
.section-dark .content-panel p,
.section-dark .contact-panel p,
.section-dark .launch-card p {
  color: rgba(255, 255, 255, 0.72);
}

.signature-grid,
.nav-grid,
.mandate-grid,
.service-grid,
.category-grid,
.insight-grid,
.contact-grid,
.two-column-grid,
.three-column-grid {
  display: grid;
  gap: 18px;
}

.signature-grid,
.category-grid,
.contact-grid,
.three-column-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ── Purple Squirrel term section ── */
.ps-term-section {
  background: var(--paper);
  border-bottom: 1px solid rgba(136, 41, 195, 0.08);
}

.ps-term-block {
  max-width: none;
}

.ps-term-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.74fr);
  gap: 52px;
  align-items: end;
}

.ps-term-copy {
  min-width: 0;
}

.ps-term-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--plum);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

.ps-term-heading > span {
  font-weight: 400;
}

.ps-term-heading > span[lang="ko"] {
  font-family: var(--font-serif-en);
  font-style: italic;
}

.ps-term-phonetic {
  font-size: 0.78rem;
  color: rgba(23, 17, 27, 0.45);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.ps-term-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 38px;
  align-items: start;
}

.ps-term-def {
  padding-left: 20px;
  border-left: 2px solid var(--plum);
}

.ps-term-def p {
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
}

.ps-term-def-en {
  display: block;
  text-wrap: pretty;
}

.ps-term-def-block {
  display: block;
}

.ps-term-def-en .ps-term-def-block + .ps-term-def-block {
  margin-top: 14px;
}

.ps-term-def-en .ps-term-def-block--punch {
  margin-top: 20px;
}

html[lang="ko"] .ps-term-def-ko {
  display: block;
  word-break: keep-all;
}

html[lang="ko"] .ps-term-def-block + .ps-term-def-block {
  margin-top: 16px;
}

.ps-term-mobile-break {
  display: none;
}

.ps-term-mobile-nowrap--continued::before {
  content: " ";
}

.ps-term-meta {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ps-term-meta-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: start;
}

.ps-term-meta-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(23, 17, 27, 0.38);
  padding-top: 3px;
}

.ps-term-meta-text {
  font-size: 0.88rem;
  line-height: 1.68;
  color: rgba(23, 17, 27, 0.72);
}

.ps-term-meta-text em {
  font-style: italic;
  color: var(--plum);
}

.ps-term-highlight {
  color: var(--plum);
  font-weight: 700;
}

.ps-term-visual {
  display: flex;
  justify-content: flex-end;
  align-self: end;
  min-width: 0;
  padding-bottom: 12px;
}

.ps-term-visual-card {
  position: relative;
  width: min(100%, 440px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ps-term-visual-card::before {
  content: none;
}

.ps-term-visual-frame {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  aspect-ratio: auto;
}

.ps-term-visual-frame::after {
  content: none;
}

.ps-term-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* ── end Purple Squirrel term section ── */

.why-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(136, 41, 195, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(250, 246, 241, 0.98), rgba(245, 239, 232, 0.98));
}

.why-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 56px;
}

.why-intro,
.why-highlight {
  position: relative;
  padding: 30px 32px;
  border: 1px solid rgba(136, 41, 195, 0.12);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: var(--shadow-soft);
}

.why-intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 243, 236, 0.98)),
    linear-gradient(180deg, rgba(136, 41, 195, 0.03), rgba(136, 41, 195, 0.03));
}

.why-intro h2 {
  max-width: none;
  font-size: clamp(1.3rem, 1.72vw, 1.58rem);
  letter-spacing: -0.018em;
}

.why-intro .section-copy {
  margin-top: 18px;
  max-width: none;
  font-size: 1rem;
  line-height: 1.72;
}

.why-highlight {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 336px;
  overflow: hidden;
  padding: 28px 28px 24px;
  background:
    linear-gradient(180deg, rgba(121, 67, 163, 0.98), rgba(92, 47, 126, 0.98)),
    linear-gradient(180deg, rgba(136, 41, 195, 0.14), rgba(136, 41, 195, 0.14));
  color: var(--white);
}

.why-highlight::before {
  content: none;
}

.why-highlight-mark {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 0.8;
  pointer-events: none;
}

.why-highlight-copy {
  position: relative;
  z-index: 3;
  margin: 0;
  max-width: none;
  padding-right: clamp(132px, 30%, 192px);
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.015em;
}

html[lang="ko"] .why-highlight-copy {
  padding-right: 74px;
  font-size: 1.08rem;
  line-height: 1.56;
}

html[lang="ko"] .why-highlight-copy-ko {
  display: block;
  word-break: keep-all;
}

html[lang="ko"] .why-highlight-copy-ko .ko-fixed-line {
  display: block;
  white-space: nowrap;
}

.why-inline-emphasis {
  color: inherit;
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
  text-decoration-color: rgba(255, 255, 255, 0.9);
}

.why-highlight-mascot {
  position: absolute;
  right: 8px;
  bottom: 0;
  width: min(52%, 208px);
  max-width: 208px;
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 14px 20px rgba(34, 17, 46, 0.18));
  z-index: 2;
}

html[lang="ko"] .why-highlight-mascot {
  width: min(30%, 136px);
  max-width: 136px;
  right: 10px;
  bottom: 4px;
}

@media (min-width: 921px) {
  .why-highlight {
    min-height: 348px;
    padding: 54px 30px 28px;
  }

  .why-highlight-copy {
    padding-right: 94px;
  }

  html[lang="ko"] .why-highlight-copy {
    padding-right: 84px;
  }

  .why-highlight-mascot {
    right: 14px;
    bottom: 10px;
  }

  html[lang="ko"] .why-highlight-mascot {
    width: min(31%, 140px);
    max-width: 140px;
    right: 16px;
    bottom: 12px;
  }
}

.why-grid {
  margin-top: 0;
}

.why-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  padding-top: 26px;
  border-color: rgba(136, 41, 195, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.96)),
    linear-gradient(180deg, rgba(136, 41, 195, 0.03), rgba(136, 41, 195, 0.03));
}

.why-card-index {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: rgba(136, 41, 195, 0.1);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.why-card strong {
  margin-bottom: 0;
  font-size: 1.14rem;
}

.why-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.68;
}

.why-card--featured {
  transform: translateY(-10px);
  border-color: var(--line);
  box-shadow: 0 28px 56px rgba(35, 22, 42, 0.09);
}

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

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

/* Services page — three-phase layout */
.services-phase {
  margin-bottom: 52px;
}

.services-phase:last-child {
  margin-bottom: 0;
}

.services-phase-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--plum);
  margin-bottom: 22px;
}

.services-phase-label {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--plum);
  line-height: 1;
}

.services-phase-name {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  line-height: 1;
}

.services-phase-desc {
  margin: 0 0 0 30px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

.service-card-num {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(168, 85, 247, 0.72);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Beyond TA partner band */
.beyond-ta-band {
  padding: 40px 44px;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(53, 39, 57, 0.08);
  background:
    radial-gradient(circle at 84% 24%, rgba(136, 41, 195, 0.07), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 234, 0.96));
  box-shadow: 0 18px 38px rgba(24, 16, 30, 0.06);
}

.beyond-ta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.8fr);
  gap: 52px;
  align-items: stretch;
}

.beyond-ta-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.beyond-ta-intro h3 {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin: 0 0 12px;
}

.services-posthire-title-en-bold {
  font-weight: 700;
}

.beyond-ta-intro p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.68;
  margin: 0 0 18px;
}

.beyond-ta-partner {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 13px;
  width: auto;
  min-width: min(100%, 432px);
  max-width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(53, 39, 57, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.beyond-ta-partner-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  padding: 3px;
}

.beyond-ta-partner-name {
  display: block;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  line-height: 1.2;
}

.beyond-ta-partner-role {
  display: block;
  font-size: 0.75rem;
  color: var(--plum-deep);
  margin-top: 2px;
}

.beyond-ta-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: stretch;
}

.beyond-ta-card {
  padding: 18px 20px;
  border: 1px solid rgba(53, 39, 57, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.52);
}

.beyond-ta-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.beyond-ta-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.68;
}

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

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

.signature-card,
.service-card,
.category-card,
.insight-card,
.nav-card,
.editorial-card,
.detail-card,
.content-panel,
.mandate-card,
.contact-panel,
.contact-form-card,
.launch-card {
  padding: 24px;
}

.conversion-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px 44px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    radial-gradient(circle at 72% 50%, rgba(136, 41, 195, 0.28), transparent 52%),
    linear-gradient(145deg, #381c4e 0%, #5a2e80 50%, #3e1f58 100%);
  box-shadow: 0 28px 64px rgba(36, 20, 50, 0.22);
  color: var(--white);
}

.conversion-band h2 {
  color: var(--white);
}

.conversion-band .mini-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.conversion-band .mini-kicker::before {
  background: rgba(255, 255, 255, 0.44);
}

.conversion-band-copy .body-copy {
  color: rgba(255, 255, 255, 0.76);
}

.conversion-band .button {
  background: var(--white);
  color: var(--plum);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(10, 5, 16, 0.22);
}

.conversion-band .button:hover,
.conversion-band .button:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(10, 5, 16, 0.26);
}

.conversion-band .button.button-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow: none;
}

.conversion-band .button.button-secondary:hover,
.conversion-band .button.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.76);
  transform: translateY(-1px);
}

.conversion-band-copy {
  max-width: 640px;
}

.conversion-band .mini-kicker {
  margin-bottom: 12px;
}

.conversion-band-copy h2 {
  max-width: 18ch;
}

.conversion-band-title-line {
  display: inline-block;
  white-space: nowrap;
}

body[data-page="tyrian"] .conversion-band-copy h2 {
  max-width: 34ch;
}

.tyrian-conversion-title-en {
  display: block;
}

.tyrian-conversion-title-line {
  display: block;
  white-space: nowrap;
}

.conversion-band-copy .body-copy {
  margin: 14px 0 0;
  max-width: 48ch;
}

.conversion-band-copy-line {
  display: inline;
}

.conversion-band-copy-line + .conversion-band-copy-line::before {
  content: " ";
}

.conversion-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.team-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.team-profile-section {
  padding-top: 74px;
}

.team-section-head {
  max-width: 880px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(168px, 198px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.96)),
    linear-gradient(180deg, rgba(136, 41, 195, 0.03), rgba(136, 41, 195, 0.03));
  box-shadow: var(--shadow-soft);
}

.founder-card-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-self: start;
  aspect-ratio: 1 / 1.14;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(34, 24, 39, 0.08), rgba(34, 24, 39, 0.02));
}

.founder-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(27, 18, 30, 0.08));
  pointer-events: none;
}

.founder-media-link {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--plum);
  box-shadow:
    0 10px 24px rgba(22, 14, 26, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.founder-media-link:hover,
.founder-media-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 14px 28px rgba(22, 14, 26, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.founder-media-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.founder-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card-body {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 18px;
  padding-block: 8px;
}

.founder-card--heidi .founder-photo {
  object-position: center 7%;
}

.founder-card--kenneth .founder-photo {
  object-position: center 18%;
}

.founder-role {
  display: block;
  padding: 0;
  border: none;
  background: none;
  max-width: 100%;
  min-height: 56px;
}

.founder-role-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(0.72rem, 0.72vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: rgba(120, 46, 172, 0.88);
  margin-bottom: 10px;
}

.founder-role-label::before {
  content: "";
  width: 20px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(136, 41, 195, 0.58), rgba(136, 41, 195, 0.12));
  flex: 0 0 auto;
}

.founder-role-title {
  display: block;
  max-width: 24ch;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(34, 24, 39, 0.7);
  line-height: 1.42;
}

.founder-name {
  margin: -2px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.26rem, 2.9vw, 3.05rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.048em;
}

.founder-focus {
  margin: 0;
  color: var(--ink);
  max-width: 22ch;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.48;
  min-height: calc(1.48em * 2);
}

.founder-summary {
  display: grid;
  gap: 12px;
  margin-bottom: auto;
}

.founder-summary p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.66;
}

.founder-pill-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.founder-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(136, 41, 195, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(136, 41, 195, 0.04);
  color: var(--plum-dark);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.social-button:hover,
.social-button:focus-visible {
  background: var(--white);
  border-color: rgba(136, 41, 195, 0.16);
  transform: translateY(-1px);
}

.social-button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: #0a66c2;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
}

.signature-card strong,
.detail-card strong,
.service-card strong,
.category-card strong,
.launch-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 600;
}

.section-dark .detail-card strong,
.section-dark .launch-card strong,
.section-dark .contact-panel strong {
  color: var(--white);
}

.nav-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 232, 0.94));
}

.nav-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.nav-card-head span {
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-card h3 {
  font-family: var(--font-body);
  font-size: 1.32rem;
  font-weight: 600;
}

.nav-card p {
  margin: 0;
  color: var(--ink-soft);
}

.nav-card-action {
  margin-top: 24px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mandate-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #ecdeff;
}

html[lang="ko"] .mandate-card strong {
  font-family: var(--font-sans-ko);
  font-size: 1.05rem;
}

.mandate-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 186px;
  border-top: 2px solid rgba(168, 85, 247, 0.36);
  background: linear-gradient(160deg, rgba(136, 41, 195, 0.08) 0%, transparent 60%);
}

.mandate-card p {
  margin: 0;
}

.mandate-status {
  margin: 0 0 14px;
  color: rgba(196, 154, 248, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.28;
  text-transform: none;
}

.mandate-meta .mandate-pill:first-child {
  background: rgba(136, 41, 195, 0.28);
  border-color: rgba(168, 85, 247, 0.44);
  color: #d4aaff;
}

.mandate-meta .mandate-pill:first-child::before {
  background: rgba(196, 150, 248, 0.8);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.14);
}

.mandate-detail {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.55;
}

.mandate-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
}

.mandate-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}

.mandate-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
  flex: 0 0 auto;
}

.section-dark .mandate-detail {
  color: rgba(255, 255, 255, 0.82);
}

/* Mandate Marquee */
.mandate-marquee {
  overflow: hidden;
  width: 100%;
  padding: 32px 0 48px;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.mandate-marquee .mandate-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: logoTicker 42s linear infinite;
  will-change: transform;
}

.mandate-marquee:hover .mandate-track {
  animation-play-state: paused;
}

.mandate-marquee .launch-card.mandate-card {
  flex: 0 0 226px;
  width: 226px;
  min-height: 0;
  border: 1px solid rgba(168, 85, 247, 0.28);
  background: linear-gradient(160deg, rgba(136, 41, 195, 0.12) 0%, rgba(255, 255, 255, 0.04) 60%);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.coverage-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.coverage-table th,
.coverage-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.coverage-table th {
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage-table td {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.coverage-table-inline {
  white-space: nowrap;
}

.process-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  padding-top: 18px;
  isolation: isolate;
}

.process-strip::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(136, 41, 195, 0.08),
    rgba(136, 41, 195, 0.32) 16%,
    rgba(136, 41, 195, 0.18) 50%,
    rgba(136, 41, 195, 0.32) 84%,
    rgba(136, 41, 195, 0.08)
  );
  z-index: 0;
}

.process-step {
  --process-accent: rgba(136, 41, 195, 0.12);
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 236px;
  padding: 30px 26px 28px;
  border: 1px solid rgba(53, 39, 57, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, var(--process-accent), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(248, 243, 236, 0.97));
  box-shadow:
    0 24px 56px rgba(33, 22, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.process-step::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 26px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9a43df, #6d24b2);
  box-shadow:
    0 0 0 6px rgba(247, 241, 234, 0.96),
    0 10px 22px rgba(136, 41, 195, 0.18);
}

.process-step::after {
  content: "";
  position: absolute;
  top: -52px;
  right: -38px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 1px solid rgba(136, 41, 195, 0.1);
  opacity: 0.56;
  pointer-events: none;
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 52px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(136, 41, 195, 0.16);
  color: var(--plum);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 24px rgba(136, 41, 195, 0.08);
}

.process-step h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.32vw, 1.42rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 11ch;
}

.process-step h3 span {
  display: block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.72;
  max-width: 24ch;
}

.process-step p span {
  display: block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.process-step:nth-child(1) {
  --process-accent: rgba(136, 41, 195, 0.12);
}

.process-step:nth-child(2) {
  --process-accent: rgba(164, 92, 214, 0.11);
  margin-top: 34px;
}

.process-step:nth-child(3) {
  --process-accent: rgba(124, 88, 194, 0.11);
  margin-top: 16px;
}

.process-step:nth-child(4) {
  --process-accent: rgba(186, 132, 92, 0.09);
  margin-top: 40px;
}

.process-step:hover,
.process-step:focus-within {
  border-color: rgba(136, 41, 195, 0.18);
  box-shadow:
    0 30px 64px rgba(33, 22, 39, 0.12),
    0 0 0 1px rgba(136, 41, 195, 0.05);
  transform: translateY(-6px);
}

@media (max-width: 1180px) {
  .process-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-strip::before {
    display: none;
  }

  .process-step:nth-child(2),
  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    margin-top: 0;
  }

  .process-step h3,
  .process-step p {
    max-width: none;
  }
}

.diagram-panel {
  padding: 26px;
}

.diagram-panel-dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.cross-border-board {
  position: relative;
  min-height: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 236, 0.96)),
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.06), transparent 32%);
  box-shadow: var(--shadow-soft);
}

.cross-border-board::before {
  display: none;
}

.board-title {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: var(--plum-dark);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  z-index: 1;
}

.board-flow-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 226px;
  padding: 22px 20px 24px;
  border: 1px solid rgba(53, 39, 57, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(35, 22, 42, 0.06);
}

.board-flow-card::after,
.board-flow-card::before {
  display: none;
}

.board-flow-card--accent {
  border-color: rgba(136, 41, 195, 0.22);
  background: linear-gradient(180deg, rgba(248, 242, 255, 0.98), rgba(243, 234, 255, 0.96));
  box-shadow: 0 4px 18px rgba(136, 41, 195, 0.1);
}

.board-flow-index {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: var(--plum);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.board-flow-card--accent .board-flow-index {
  background: var(--plum-bright);
}

.board-step-kicker {
  color: var(--plum-dark);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.board-flow-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.board-flow-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.62;
}

.word-accent {
  font-style: normal;
  font-weight: 700;
  color: var(--plum);
}

.board-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-top: 1px solid rgba(136, 41, 195, 0.1);
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.62;
}

.editorial-card {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 235, 0.96)),
    linear-gradient(180deg, rgba(136, 41, 195, 0.03), rgba(136, 41, 195, 0.03));
}

.editorial-card .status,
.insight-card .status,
.launch-badge,
.type-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-badge {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.74);
}

.editorial-card h3,
.insight-card h3 {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 1.28rem;
  font-weight: 600;
}

.editorial-card p,
.insight-card p {
  margin: 14px 0 0;
}

.insight-card {
  min-height: 230px;
}

.insight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.launch-grid .detail-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.launch-grid .detail-card strong {
  color: var(--white);
}

.launch-grid .detail-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

body[data-page="tyrian"] .page-hero {
  padding: 72px 0 80px;
  background: #0e0820;
}

body[data-page="tyrian"] .page-hero::before {
  background:
    radial-gradient(ellipse at 78% 36%, rgba(136, 41, 195, 0.46) 0%, transparent 50%),
    radial-gradient(ellipse at 22% 78%, rgba(70, 90, 220, 0.2) 0%, transparent 42%);
}

body[data-page="tyrian"] .page-hero-inner {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: center;
}

body[data-page="tyrian"] .hero-copy {
  max-width: 560px;
}

body[data-page="tyrian"] .tyrian-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

body[data-page="tyrian"] .launch-badge {
  position: relative;
  min-height: 34px;
  margin: 0;
  padding: 0 15px 0 34px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(7, 3, 15, 0.18);
}

body[data-page="tyrian"] .launch-badge::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c68fff;
  box-shadow: 0 0 0 5px rgba(198, 143, 255, 0.14);
  transform: translateY(-50%);
}

body[data-page="tyrian"] .hero-kicker {
  margin: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

body[data-page="tyrian"] .hero-kicker::before {
  content: none;
}

body[data-page="tyrian"] .hero-summary {
  max-width: 100%;
}

body[data-page="tyrian"] .hero-actions {
  gap: 12px;
}

body[data-page="tyrian"] .hero-actions .button,
body[data-page="tyrian"] .hero-actions .button-secondary {
  min-width: 0;
}

body[data-page="tyrian"] .hero-note--tyrian-cta {
  max-width: 48ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.55;
}

body[data-page="tyrian"] .hero-note {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.76);
}

.tyrian-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

body[data-page="tyrian"] .tyrian-mini-list .type-tag {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.tyrian-hero-media {
  position: relative;
  min-height: 0;
}

.tyrian-hero-media::before {
  content: "";
  position: absolute;
  inset: 34px 38px 40px 24px;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(164, 106, 224, 0.34), rgba(164, 106, 224, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
}

.product-window {
  margin: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(49, 37, 44, 0.08);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 243, 236, 0.99));
  box-shadow: 0 30px 76px rgba(19, 14, 25, 0.16);
}

.product-window-bar {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(49, 37, 44, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 234, 0.94));
}

.product-window-dots {
  display: flex;
  gap: 6px;
}

.product-window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d7c7e6;
}

.product-window-dots span:first-child {
  background: #f1b2b8;
}

.product-window-dots span:nth-child(2) {
  background: #efdeb1;
}

.product-window-dots span:last-child {
  background: #b8e1c7;
}

.product-window-label {
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tyrian-hero-summary-line {
  display: inline;
}

html[lang="ko"] body[data-page="tyrian"] .tyrian-hero-summary-ko {
  display: block;
}

html[lang="ko"] body[data-page="tyrian"] .tyrian-hero-summary-line {
  display: block;
  white-space: nowrap;
}

.product-window-image {
  display: block;
  width: 100%;
  height: auto;
}

.product-window-image--blurred {
  filter: blur(2px) saturate(1) contrast(1.1);
  transform: scale(1.005);
  transform-origin: center center;
}

.product-window-image--signin {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.tyrian-hero-media .product-window--dashboard {
  width: min(100%, 920px);
  margin-left: 0;
  z-index: 1;
}

.tyrian-hero-media .product-window--signin {
  position: absolute;
  right: -8px;
  bottom: -24px;
  width: min(35%, 280px);
  z-index: 2;
}

.product-floating-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(136, 41, 195, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(28, 21, 31, 0.12);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.product-floating-chip--top {
  top: 62px;
  left: 18px;
}

.product-floating-chip--bottom {
  right: 18px;
  bottom: 18px;
}

.tyrian-feature-grid .detail-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
}

.tyrian-feature-grid .detail-card strong {
  color: var(--ink);
}

.tyrian-feature-grid .detail-card p {
  color: var(--ink-soft);
}

.tyrian-showcase-grid,
.tyrian-mobile-grid,
.tyrian-access-grid {
  align-items: center;
  gap: 28px;
}

.tyrian-media-panel .product-window,
.tyrian-mobile-panel .product-window,
.tyrian-signin-panel .product-window {
  box-shadow: 0 34px 82px rgba(18, 13, 23, 0.18);
}

.tyrian-mobile-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(136, 41, 195, 0.08), transparent 28%),
    radial-gradient(circle at 84% 54%, rgba(113, 54, 193, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(248, 243, 236, 0.96), rgba(244, 238, 232, 0.98));
}

.tyrian-mobile-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.16));
  pointer-events: none;
}

.tyrian-mobile-grid {
  position: relative;
}

.tyrian-mobile-grid .content-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 243, 236, 0.98)),
    linear-gradient(180deg, rgba(136, 41, 195, 0.03), rgba(136, 41, 195, 0.03));
}

html[lang="ko"] .tyrian-mobile-copy .body-copy {
  font-size: 1.01rem;
  line-height: 1.86;
}

html[lang="ko"] .tyrian-mobile-copy-ko,
html[lang="ko"] .tyrian-mobile-bullet-ko {
  display: block;
  word-break: keep-all;
}

html[lang="ko"] .tyrian-mobile-copy .bullet-list li {
  line-height: 1.78;
}

.tyrian-mobile-panel {
  position: relative;
}

.tyrian-mobile-panel::before {
  content: "";
  position: absolute;
  inset: 34px 22px 34px 36px;
  border-radius: 42px;
  background: radial-gradient(circle, rgba(150, 100, 224, 0.28), rgba(150, 100, 224, 0) 70%);
  filter: blur(12px);
  pointer-events: none;
}

.tyrian-mobile-panel .product-window--mobile {
  width: min(100%, 740px);
  margin-left: auto;
  z-index: 1;
}

.product-window-image--mobile {
  display: block;
  width: 100%;
  height: auto;
}

.product-window-tbd {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 118px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 46px;
  overflow: hidden;
  isolation: isolate;
  clip-path: inset(0 round 46px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 42px rgba(28, 15, 42, 0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #6a2fc2;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.product-window-tbd--center {
  top: 50%;
}

.tyrian-signin-panel .product-window {
  max-width: 360px;
  margin-left: auto;
  overflow: hidden;
  padding-bottom: 24px;
  background: linear-gradient(180deg, #3a2351 0%, #4a2d63 100%);
}

.tyrian-signin-panel .product-window-bar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 234, 0.94));
}

.tyrian-signin-panel .product-window-image--signin {
  display: block;
  width: calc(100% - 28px);
  margin: 0 auto;
}

.section-dark .tyrian-access-grid .content-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.section-dark .tyrian-access-grid h2 {
  color: var(--white);
}

.section-dark .tyrian-access-grid .bullet-list li {
  color: rgba(255, 255, 255, 0.78);
}

.section-dark .tyrian-access-grid .bullet-list li::before {
  background: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.contact-brief-card,
.contact-form-card--premium {
  display: flex;
  flex-direction: column;
}

.contact-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-topic-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-fit-panel {
  display: grid;
  gap: 18px;
}

.contact-fit-grid {
  display: grid;
  gap: 12px;
}

.contact-fit-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-fit-item strong {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-fit-item span {
  color: rgba(255, 255, 255, 0.78);
}

.contact-brief-card {
  padding: 28px 28px 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(136, 41, 195, 0.06), rgba(136, 41, 195, 0)),
    var(--white);
  border: 1px solid rgba(136, 41, 195, 0.12);
  box-shadow: var(--card-shadow);
}

.contact-brief-copy {
  max-width: 34rem;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
}

.contact-brief-item {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(250, 246, 241, 0.92);
  border: 1px solid rgba(53, 31, 62, 0.08);
}

.contact-brief-item strong {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-brief-item span {
  color: var(--ink-soft);
}

.contact-panel {
  min-height: 100%;
}

.contact-panel ul,
.contact-list,
.bullet-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-panel li,
.contact-list li,
.bullet-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  color: var(--ink-soft);
}

.section-dark .contact-panel li,
.section-dark .bullet-list li {
  color: rgba(255, 255, 255, 0.74);
}

.contact-panel li::before,
.contact-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--gold);
}

.contact-form-card {
  padding: 24px;
}

.contact-form-card--premium {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(136, 41, 195, 0.05), rgba(136, 41, 195, 0)),
    var(--white);
  border: 1px solid rgba(136, 41, 195, 0.14);
  box-shadow: var(--card-shadow);
}

.contact-form-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.contact-form-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.06;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field span {
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a59aa1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(136, 41, 195, 0.54);
  box-shadow: 0 0 0 3px rgba(136, 41, 195, 0.12);
}

.select-wrap {
  position: relative;
  display: block;
}

.select-wrap select {
  width: 100%;
  padding-right: 40px;
  cursor: pointer;
}

.select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--plum);
  transition: transform 180ms ease;
}

.select-wrap:focus-within .select-chevron {
  transform: translateY(-50%) rotate(180deg);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
}

.contact-next-band {
  padding: 48px 52px;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    radial-gradient(circle at 80% 50%, rgba(136, 41, 195, 0.07), transparent 52%),
    linear-gradient(180deg, rgba(136, 41, 195, 0.04), rgba(136, 41, 195, 0)),
    var(--white);
  border: 1px solid rgba(136, 41, 195, 0.14);
  box-shadow: var(--card-shadow);
}

.contact-next-head {
  margin-bottom: 36px;
}

.contact-next-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.contact-next-options {
  display: flex;
  align-items: center;
  gap: 0;
}

.contact-next-option {
  flex: 1;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 32px;
  border-radius: 20px;
  background: rgba(250, 246, 241, 0.7);
  border: 1px solid rgba(136, 41, 195, 0.1);
}

.contact-next-option-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(136, 41, 195, 0.08);
  border: 1px solid rgba(136, 41, 195, 0.14);
}

.contact-next-option-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-next-option-body strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
}

.contact-next-option-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.contact-next-option-body .button {
  margin-top: 8px;
  align-self: flex-start;
}

.contact-next-divider {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Contact page ─────────────────────────── */
body[data-page="contact"] {
  background:
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.05), transparent 24%),
    linear-gradient(180deg, #f7f2eb 0%, #f3ede5 42%, #f8f3ec 100%);
}

body[data-page="contact"] .site-header {
  background: rgba(249, 244, 238, 0.88);
}

.contact-page-main {
  padding-top: 12px;
}

.contact-single-section {
  position: relative;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 18px;
}

.contact-single-section .container {
  display: block;
}

body[data-page="contact"] .contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: 18px;
  align-items: stretch;
}

body[data-page="contact"] .contact-sidebar {
  position: relative;
  top: auto;
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
  height: 100%;
  align-self: stretch;
}

.contact-sidebar-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 22px;
  border: 1px solid rgba(53, 39, 57, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.96));
  box-shadow: 0 16px 36px rgba(32, 22, 38, 0.05);
  min-height: 0;
  height: auto;
}

.contact-sidebar-card::before {
  display: none;
}

.contact-sidebar-card--intro {
  background:
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 234, 0.96));
}

.contact-sidebar-card--fit {
  background:
    radial-gradient(circle at top left, rgba(185, 138, 58, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 239, 231, 0.96));
}

.contact-sidebar-card--call {
  background:
    radial-gradient(circle at top right, rgba(185, 138, 58, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 231, 0.98));
}

.contact-resource-panel {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(53, 39, 57, 0.08);
}

.contact-resource-label {
  margin: 0;
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-resource-copy {
  max-width: 36ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.62;
}

.contact-resource-panel .brochure-download-button {
  align-self: flex-start;
  width: 100%;
}

.contact-sidebar-kicker,
.contact-sidebar-call-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-sidebar-kicker::before,
.contact-sidebar-call-label::before,
.contact-form-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
}

.contact-sidebar-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.72rem, 2.4vw, 2.18rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.contact-sidebar-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.58;
}

.contact-sidebar-subcopy,
.contact-sidebar-call-desc {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.6;
}

.contact-checklist {
  margin-top: 16px;
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(53, 39, 57, 0.08);
}

.contact-checklist-label {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.contact-checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-checklist li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--gold));
}

.contact-checklist-note {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(53, 39, 57, 0.08);
  color: var(--ink-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

body[data-page="contact"] .contact-fit-grid {
  gap: 12px;
}

body[data-page="contact"] .contact-fit-item {
  padding: 16px 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(136, 41, 195, 0.12);
  background: linear-gradient(180deg, rgba(136, 41, 195, 0.06), rgba(255, 255, 255, 0.74));
}

body[data-page="contact"] .contact-fit-item strong {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page="contact"] .contact-fit-item span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.58;
}

.contact-sidebar-call-link {
  width: 100%;
  min-width: 0;
  justify-content: center;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 20px;
  border-color: rgba(126, 72, 171, 0.18);
  background:
    linear-gradient(180deg, rgba(173, 122, 214, 0.96), rgba(136, 78, 188, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 22px rgba(84, 37, 116, 0.14);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.contact-sidebar-call-link:hover,
.contact-sidebar-call-link:focus-visible {
  border-color: rgba(126, 72, 171, 0.22);
  background:
    linear-gradient(180deg, rgba(183, 131, 222, 0.98), rgba(144, 86, 196, 1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08));
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 26px rgba(84, 37, 116, 0.18);
}

.contact-sidebar-call-note {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 0.75rem;
  line-height: 1.52;
}

body[data-page="contact"] .contact-form-card--premium {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 24px 26px 22px;
  border-radius: 28px;
  border: 1px solid rgba(53, 39, 57, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.96));
  box-shadow: 0 18px 42px rgba(32, 22, 38, 0.06);
  min-height: 100%;
}

body[data-page="contact"] .contact-form-card--premium::before {
  display: none;
}

body[data-page="contact"] .contact-form-card--premium::after {
  display: none;
}

body[data-page="contact"] .contact-form-card--premium > * {
  position: relative;
  z-index: 1;
}

.contact-form-shell {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.contact-form-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(53, 39, 57, 0.08);
}

.contact-form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form-head h1,
.contact-form-head h2 {
  max-width: none;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.94rem, 2.5vw, 2.44rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.contact-form-intro {
  max-width: none;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

body[data-page="contact"] .field-grid {
  flex: 1 1 auto;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: 12px;
  align-content: start;
  align-items: start;
  min-height: 0;
}

body[data-page="contact"] .field {
  gap: 10px;
  align-content: start;
  align-self: start;
}

body[data-page="contact"] .field.field--select {
  align-content: start;
}

body[data-page="contact"] .field.field--select .field-label {
  position: relative;
  z-index: 2;
}

body[data-page="contact"] .field.field-wide {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 0;
}

body[data-page="contact"] .field span {
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page="contact"] .field-help {
  display: block;
  margin: 0;
  color: rgba(63, 44, 74, 0.56);
  font-size: 0.74rem;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  text-wrap: pretty;
  white-space: normal;
  overflow-wrap: anywhere;
}

body[data-page="contact"] .field-help span {
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

body[data-page="contact"] .field-help .field-help-line {
  display: block;
}

body[data-page="contact"] .field-help--phone {
  margin: 6px 2px 0;
  width: 100%;
  max-width: none;
}

html[lang="ko"] body[data-page="contact"] .field-help--phone > span[lang="ko"] {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

html[lang="ko"] body[data-page="contact"] .field-help--phone > span[lang="ko"] .field-help-line:first-child {
  white-space: nowrap;
}

body[data-page="contact"] .field input,
body[data-page="contact"] .field select,
body[data-page="contact"] .field textarea {
  padding: 14px 16px;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(53, 39, 57, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  font: inherit;
  line-height: 1.35;
  box-sizing: border-box;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

body[data-page="contact"] .field input,
body[data-page="contact"] .field select {
  height: 50px;
}

body[data-page="contact"] .field input:hover,
body[data-page="contact"] .field select:hover,
body[data-page="contact"] .field textarea:hover {
  border-color: rgba(90, 55, 110, 0.18);
}

body[data-page="contact"] .field input:focus,
body[data-page="contact"] .field select:focus,
body[data-page="contact"] .field textarea:focus {
  border-color: rgba(136, 41, 195, 0.34);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(136, 41, 195, 0.08);
}

body[data-page="contact"] .field input[aria-invalid="true"],
body[data-page="contact"] .field select[aria-invalid="true"],
body[data-page="contact"] .field textarea[aria-invalid="true"] {
  border-color: rgba(169, 57, 57, 0.36);
  box-shadow: 0 0 0 4px rgba(169, 57, 57, 0.08);
}

body[data-page="contact"] .field textarea {
  flex: 1 1 auto;
  max-height: none;
  height: 100%;
  resize: vertical;
}

body[data-page="contact"] .field.field-wide textarea {
  min-height: 188px;
}

body[data-page="contact"] .select-wrap {
  position: relative;
}

body[data-page="contact"] .select-wrap > .custom-select-check-icon {
  display: none;
}

body[data-page="contact"] .select-wrap.is-enhanced select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

body[data-page="contact"] .custom-select-trigger {
  width: 100%;
  min-height: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(53, 39, 57, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

body[data-page="contact"] .custom-select-trigger:hover {
  border-color: rgba(90, 55, 110, 0.18);
}

body[data-page="contact"] .select-wrap.is-open .custom-select-trigger,
body[data-page="contact"] .custom-select-trigger:focus-visible {
  border-color: rgba(136, 41, 195, 0.34);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(136, 41, 195, 0.08);
  outline: none;
}

body[data-page="contact"] .select-wrap.is-invalid .custom-select-trigger {
  border-color: rgba(169, 57, 57, 0.36);
  box-shadow: 0 0 0 4px rgba(169, 57, 57, 0.08);
}

body[data-page="contact"] .field .custom-select-trigger-text {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
}

body[data-page="contact"] .select-wrap.is-placeholder .custom-select-trigger,
body[data-page="contact"] .select-wrap.is-placeholder .custom-select-trigger-text {
  color: #a59aa1;
}

body[data-page="contact"] .custom-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 24;
  display: none;
  padding: 8px;
  border: 1px solid rgba(53, 39, 57, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 243, 236, 0.98)),
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.06), transparent 28%);
  box-shadow: 0 22px 42px rgba(32, 22, 38, 0.12);
  max-height: 312px;
  overflow-y: auto;
}

body[data-page="contact"] .select-wrap.is-open .custom-select-menu {
  display: grid;
  gap: 4px;
}

body[data-page="contact"] .custom-select-option {
  position: relative;
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 40px 0 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

body[data-page="contact"] .custom-select-option:hover,
body[data-page="contact"] .custom-select-option:focus-visible {
  background: rgba(136, 41, 195, 0.06);
  outline: none;
}

body[data-page="contact"] .custom-select-option.is-selected {
  background: rgba(136, 41, 195, 0.1);
  color: var(--plum-deep);
}

body[data-page="contact"] .field .custom-select-option-label {
  color: inherit;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
}

body[data-page="contact"] .custom-select-option.is-placeholder {
  color: #a59aa1;
}

body[data-page="contact"] .custom-select-option-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  color: var(--plum);
  opacity: 0;
  transform: translateY(-50%) scale(0.9);
  transition: opacity 160ms ease, transform 160ms ease;
}

body[data-page="contact"] .custom-select-option.is-selected .custom-select-option-icon {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

body[data-page="contact"] .select-wrap--topic select,
body[data-page="contact"] .select-wrap--topic .custom-select-trigger {
  min-height: 50px;
  height: 50px;
  color: var(--ink);
}

body[data-page="contact"] .select-chevron {
  right: 16px;
  color: rgba(53, 39, 57, 0.58);
  transition: transform 180ms ease, color 180ms ease;
}

body[data-page="contact"] .select-wrap.is-open .select-chevron {
  transform: translateY(-50%) rotate(180deg);
  color: var(--plum);
}

.contact-form-actions {
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(53, 39, 57, 0.08);
}

.contact-form-actions .button {
  min-width: 156px;
  min-height: 46px;
  box-shadow: none;
}

.contact-form-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.contact-form-note {
  max-width: none;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.contact-form-note a {
  color: var(--plum);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-status {
  min-height: 1.3em;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink-muted);
}

.contact-form-status:empty {
  display: none;
}

.contact-form-status.is-error {
  color: #a03f45;
}

.contact-form-status.is-success {
  color: #2f6b52;
}

@media (min-width: 1181px) {
  body[data-page="contact"] .contact-form-head h1 span[lang="en"],
  body[data-page="contact"] .contact-form-intro span[lang="en"] {
    white-space: nowrap;
  }

  .conversion-band-copy {
    flex: 1 1 760px;
    max-width: 760px;
  }

  .conversion-band-copy .body-copy {
    max-width: none;
  }

  .conversion-band-copy-line {
    display: block;
  }

  .conversion-band-copy-line + .conversion-band-copy-line::before {
    content: none;
  }
}

.contact-next-band {
  position: relative;
  overflow: hidden;
  padding: 36px 36px 38px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, #1a1120 0%, #2c173c 55%, #120c19 100%);
  box-shadow: 0 28px 64px rgba(15, 10, 20, 0.24);
  color: var(--white);
}

.contact-next-band::before {
  content: "";
  position: absolute;
  left: 62%;
  top: -36%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 143, 255, 0.16), transparent 58%);
  pointer-events: none;
}

.contact-next-band > * {
  position: relative;
  z-index: 1;
}

.contact-next-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-next-head .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.contact-next-head .section-kicker::before {
  background: rgba(255, 255, 255, 0.42);
}

.contact-next-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

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

.contact-next-step {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 20px 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(12px);
}

.contact-next-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-next-step strong {
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.3;
}

.contact-next-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.64;
}

.footer {
  padding: 30px 0 24px;
  background: var(--plum-night);
  color: var(--white);
}

.footer-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: block;
  width: auto;
  height: 26px;
  max-width: none;
}

.footer-copy {
  max-width: 420px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 6px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a.footer-link--brochure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.94);
}

.footer-links a[href="tyrian.html"] {
  display: none;
}

.footer-link-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.footer-links .footer-link-badge {
  display: none;
}

.button-secondary.brochure-download-button,
.brochure-download-button {
  gap: 12px;
  justify-content: flex-start;
  padding: 0 14px 0 12px;
  border-color: rgba(136, 41, 195, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 241, 234, 0.98)),
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.08), transparent 34%);
  color: var(--plum-deep);
  box-shadow:
    0 14px 28px rgba(32, 22, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.button-secondary.brochure-download-button:hover,
.button-secondary.brochure-download-button:focus-visible,
.brochure-download-button:hover,
.brochure-download-button:focus-visible {
  border-color: rgba(136, 41, 195, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(249, 243, 238, 0.99)),
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.12), transparent 34%);
  color: var(--plum-deep);
  box-shadow:
    0 18px 34px rgba(32, 22, 38, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.brochure-download-button::before {
  content: "\2193";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 11px;
  background: rgba(136, 41, 195, 0.12);
  color: var(--plum-deep);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.brochure-download-button > span[lang] {
  color: var(--plum-deep);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brochure-download-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-left: auto;
  padding: 0 10px;
  border: 1px solid rgba(136, 41, 195, 0.12);
  border-radius: 999px;
  background: rgba(136, 41, 195, 0.09);
  color: var(--plum-deep);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-legal-link:hover,
.footer-legal-link.is-current {
  color: rgba(255, 255, 255, 0.72);
}

/* ── Insights Blog ───────────────────────────────────────────── */
.blog-masthead {
  background: var(--paper);
  padding: 68px 0 0;
  border-bottom: 1px solid var(--line-strong);
}

.blog-masthead-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  align-items: end;
  gap: 42px;
  padding-bottom: 34px;
}

.blog-masthead-copy {
  max-width: 760px;
  min-width: 0;
}

.blog-channel-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0 0 14px;
}

.blog-channel-label::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.blog-masthead-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}

html[lang="ko"] .blog-masthead-title {
  font-family: var(--font-sans-ko);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.blog-masthead-summary {
  max-width: 48ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.blog-masthead-aside {
  display: flex;
  align-self: center;
  justify-content: flex-end;
  min-width: 0;
}

.blog-linkedin-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 312px);
  padding: 18px 20px 20px;
  border: 1px solid rgba(136, 41, 195, 0.12);
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 241, 234, 0.94)),
    radial-gradient(circle at top right, rgba(136, 41, 195, 0.05), transparent 42%);
  box-shadow: var(--shadow-soft);
}

.blog-linkedin-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0;
}

.blog-linkedin-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.blog-linkedin-desc {
  max-width: 30ch;
  font-size: 0.92rem;
  line-height: 1.64;
  color: var(--ink-soft);
  margin: 0;
}

.blog-linkedin-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  padding: 8px 16px 8px 10px;
  border: 1px solid rgba(136, 41, 195, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  color: var(--plum-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
  align-self: flex-start;
}

.blog-linkedin-follow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0a66c2;
  color: #fff;
  flex: 0 0 auto;
}

.blog-linkedin-follow-icon svg {
  width: 14px;
  height: 14px;
}

.blog-linkedin-follow:hover {
  border-color: rgba(136, 41, 195, 0.22);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 24px rgba(24, 17, 25, 0.06);
  transform: translateY(-1px);
}

.blog-masthead-rule {
  height: 1px;
  background: var(--line-strong);
  display: none; /* border-bottom on .blog-masthead covers this */
}

/* Featured post */
.blog-featured-section {
  padding-top: 52px;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 200ms ease;
  min-width: 0;
}

.blog-featured-card:hover {
  box-shadow: 0 20px 48px rgba(24, 17, 25, 0.08);
}

.blog-featured-bg {
  background: linear-gradient(160deg, var(--plum-night) 0%, #1f0e30 100%);
  min-height: 280px;
}

.blog-featured-bg.has-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.blog-featured-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.blog-featured-content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  min-width: 0;
}

.blog-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

html[lang="ko"] .blog-featured-title {
  font-family: var(--font-sans-ko);
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.blog-featured-excerpt {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* Post grid */
.blog-grid-section {
  padding-top: 48px;
}

.blog-grid-head {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.blog-grid-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
  font-family: var(--font-body);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.blog-card {
  background: var(--white);
  min-width: 0;
}

.blog-card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 28px 24px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: background 160ms;
  min-width: 0;
}

.blog-card-inner:hover {
  background: #faf7f3;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  flex: 1;
}

html[lang="ko"] .blog-card-title {
  font-family: var(--font-sans-ko);
  font-size: 1.05rem;
}

.blog-card-excerpt {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Category tags */
.blog-cat-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: var(--paper-muted);
  color: var(--ink-soft);
}

.blog-cat-tag--cross-border { background: #eee8f6; color: #5a376e; }
.blog-cat-tag--leadership-search { background: #1c0f28; color: #d4aaff; }
.blog-cat-tag--critical-hiring { background: #f0f4ff; color: #3050a0; }
.blog-cat-tag--founder-perspective { background: #fff4e6; color: #904010; }
.blog-cat-tag--hiring-systems { background: #e8f5ee; color: #1a6040; }
.blog-cat-tag--hr-tech { background: #e6f2fa; color: #0e5a8a; }
.blog-cat-tag--tyrian { background: #f3eafc; color: var(--plum); }

/* Blog filter bar */
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.blog-filter-btn {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.blog-filter-btn:hover {
  background: var(--paper-strong);
  color: var(--ink);
  border-color: var(--ink-muted);
}

.blog-filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.blog-filter-btn--cross-border.is-active        { background: #5a376e; border-color: #5a376e; }
.blog-filter-btn--critical-hiring.is-active     { background: #3050a0; border-color: #3050a0; }
.blog-filter-btn--founder-perspective.is-active { background: #904010; border-color: #904010; }
.blog-filter-btn--hiring-systems.is-active      { background: #1a6040; border-color: #1a6040; }
.blog-filter-btn--hr-tech.is-active             { background: #0e5a8a; border-color: #0e5a8a; }
.blog-filter-btn--leadership-search.is-active   { background: #3d1060; border-color: #3d1060; }

.blog-card[hidden] { display: none; }

/* Post meta (date/author) */
.blog-post-meta {
  font-size: 0.76rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.post-author-link {
  display: inline-flex;
  align-items: center;
  color: var(--editorial-brand-strong);
  cursor: pointer;
  pointer-events: auto;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

.post-author-link:hover {
  color: var(--editorial-brand);
}

/* Read more */
.blog-read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.02em;
  margin-top: auto;
}

/* Post page */
.post-page-main {
  background:
    radial-gradient(circle at top right, rgba(92, 63, 116, 0.05), transparent 28%),
    radial-gradient(circle at 12% 24%, rgba(92, 63, 116, 0.025), transparent 24%),
    linear-gradient(180deg, #f8f4ef 0%, #f2ece5 100%);
  min-height: calc(100vh - 64px);
}

.post-article {
  padding: 54px 0 34px;
}

.post-container {
  max-width: 920px;
}

.post-shell {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(63, 47, 39, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 239, 0.98)),
    radial-gradient(circle at top right, rgba(92, 63, 116, 0.04), transparent 44%);
  box-shadow:
    0 18px 40px rgba(30, 22, 42, 0.05),
    0 40px 80px rgba(30, 22, 42, 0.04);
  overflow: hidden;
}

.post-shell::before {
  content: "";
  position: absolute;
  top: -26px;
  right: -24px;
  width: 220px;
  height: 220px;
  background: url("../images/acorn-logo-clean.png") center/contain no-repeat;
  opacity: 0.028;
  pointer-events: none;
}

.post-shell > * {
  position: relative;
  z-index: 1;
}

.post-back {
  margin-bottom: 28px;
}

.post-back a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--editorial-ink-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 150ms;
}

.post-back a:hover {
  color: var(--editorial-brand-strong);
}

.post-header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.post-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(71, 45, 95, 0.68);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.post-page-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(92, 63, 116, 0.84), rgba(92, 63, 116, 0.12));
}

.post-header .blog-cat-tag {
  padding: 6px 12px;
  border: 1px solid var(--editorial-brand-line);
  background: var(--editorial-brand-soft);
  color: var(--editorial-brand-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--editorial-brand-strong);
  margin: 0;
}

body[data-page="post"][data-post-language="ko"] .post-title {
  font-family: var(--font-editorial-ko);
  font-size: clamp(1.72rem, 3vw, 2.72rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.34;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
  hyphens: none;
  text-wrap: balance;
}

.post-summary {
  max-width: 58ch;
  margin: 2px 0 0;
  color: var(--editorial-ink-soft);
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.post-byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--editorial-ink-muted);
}

.post-byline-sep {
  color: var(--editorial-line);
}

.post-body-surface {
  padding: 30px 34px 34px;
  border: 1px solid rgba(92, 63, 116, 0.09);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 238, 0.98)),
    radial-gradient(circle at top right, rgba(92, 63, 116, 0.035), transparent 50%);
  box-shadow: 0 16px 36px rgba(35, 22, 46, 0.045);
}

.post-shell--source-html {
  padding-bottom: 18px;
}

.post-body-surface--source-html {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.post-body-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 18px;
  background: var(--white);
}

.post-body-surface--source-html .post-body-frame {
  border-radius: 0;
  background: transparent;
}

.post-body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.84;
  color: var(--editorial-ink);
}

.post-body > :first-child {
  margin-top: 0;
}

.post-body h2 {
  font-family: var(--font-display);
  font-size: 1.54rem;
  margin: 2.2em 0 0.6em;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--editorial-brand-strong);
  text-align: left;
}

body[data-page="post"][data-post-language="ko"] .post-body h2 {
  font-family: var(--font-editorial-ko);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.post-body h3 {
  font-size: 1.16rem;
  margin: 1.8em 0 0.5em;
  font-weight: 700;
  line-height: 1.32;
  color: var(--editorial-brand-strong);
  text-align: left;
}

.post-body p {
  margin: 0 0 1.4em;
  text-wrap: pretty;
}

.post-body p:empty {
  display: none;
  margin: 0;
}

.post-body ul, .post-body ol {
  margin: 0 0 1.4em;
  padding-left: 1.5em;
}

.post-body li {
  margin-bottom: 0.5em;
}

.post-body blockquote {
  border: 1px solid var(--editorial-brand-line);
  border-left: 4px solid var(--editorial-brand);
  margin: 1.8em 0;
  padding: 16px 24px;
  background: var(--editorial-brand-tint);
  border-radius: 0 18px 18px 0;
  color: var(--editorial-ink);
  font-style: normal;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.post-body a {
  color: var(--editorial-brand-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body blockquote,
.post-body .pullquote,
.post-body .pullquote p,
.post-body .dramatic,
.post-body .source {
  text-align: left;
}

.post-body .source {
  text-align: left;
}

body[data-page="post"][data-post-language="ko"] .post-summary,
body[data-page="post"][data-post-language="ko"] .post-byline,
body[data-page="post"][data-post-language="ko"] .blog-post-meta,
body[data-page="post"][data-post-language="ko"] .post-body,
body[data-page="post"][data-post-language="ko"] .post-body p,
body[data-page="post"][data-post-language="ko"] .post-body li,
body[data-page="post"][data-post-language="ko"] .post-body ul,
body[data-page="post"][data-post-language="ko"] .post-body ol,
body[data-page="post"][data-post-language="ko"] .post-body blockquote,
body[data-page="post"][data-post-language="ko"] .post-back a,
body[data-page="post"][data-post-language="ko"] .post-page-kicker,
body[data-page="post"][data-post-language="ko"] .post-body h2,
body[data-page="post"][data-post-language="ko"] .post-body h3,
body[data-page="post"][data-post-language="ko"] .post-body .hook,
body[data-page="post"][data-post-language="ko"] .post-body .dramatic,
body[data-page="post"][data-post-language="ko"] .post-body .pullquote p {
  font-family: var(--font-reading-ko);
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
  hyphens: none;
  text-justify: inter-character;
}

body[data-page="post"][data-post-language="ko"] .post-summary,
body[data-page="post"][data-post-language="ko"] .post-body p,
body[data-page="post"][data-post-language="ko"] .post-body li,
body[data-page="post"][data-post-language="ko"] .post-body .hook {
  text-align: justify;
}

body[data-page="post"][data-post-language="ko"] .post-body h2,
body[data-page="post"][data-post-language="ko"] .post-body h3,
body[data-page="post"][data-post-language="ko"] .post-body .hook,
body[data-page="post"][data-post-language="ko"] .post-body .dramatic {
  font-family: var(--font-editorial-ko);
}

body[data-page="post"][data-post-language="ko"] .post-body .hook {
  margin: 0 0 1.5em;
  font-size: 1.5rem;
  line-height: 1.82;
  letter-spacing: -0.04em;
  color: var(--editorial-brand-strong);
}

body[data-page="post"][data-post-language="ko"] .post-body .dramatic {
  margin: 1.4em 0;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.05em;
  color: var(--editorial-brand-strong);
}

body[data-page="post"][data-post-language="ko"] .post-body .pullquote {
  margin: 2.2em 0;
  padding: 22px 26px;
  border: 1px solid var(--editorial-brand-line);
  border-left: 4px solid var(--editorial-brand);
  border-radius: 0 20px 20px 0;
  background: var(--editorial-brand-tint);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

body[data-page="post"][data-post-language="ko"] .post-body .pullquote p {
  margin-bottom: 0;
  font-family: var(--font-editorial-ko);
  font-size: 1.1rem;
  line-height: 1.82;
  letter-spacing: -0.03em;
  color: var(--editorial-ink);
  text-wrap: pretty;
}

body[data-page="post"][data-post-language="ko"] .post-body .pullquote .source,
body[data-page="post"][data-post-language="ko"] .post-body .accent {
  font-family: var(--font-reading-ko);
}

body[data-page="post"][data-post-language="ko"] .post-body .source {
  margin-top: 10px;
  color: var(--editorial-ink-muted);
  font-size: 0.86rem;
}

body[data-page="post"][data-post-language="ko"] .post-body p,
body[data-page="post"][data-post-language="ko"] .post-body li,
body[data-page="post"][data-post-language="ko"] .post-body .hook,
body[data-page="post"][data-post-language="ko"] .post-summary {
  text-justify: inter-character;
  text-wrap: pretty;
}

body[data-page="post"][data-post-language="ko"] .post-body .accent {
  color: var(--editorial-brand-strong);
  font-weight: 700;
}

body[data-page="post"][data-post-language="ko"] .post-body strong,
body[data-page="post"][data-post-language="ko"] .post-body b {
  color: var(--editorial-ink);
}

.post-footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--editorial-line);
}


.post-back-bottom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--editorial-ink-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 150ms;
}

.post-back-bottom:hover {
  color: var(--editorial-brand-strong);
}

@media (max-width: 920px) {
  .post-container {
    max-width: 100%;
  }

  .post-shell {
    padding: 28px;
    border-radius: 30px;
  }

  .post-shell::before {
    top: -32px;
    right: -34px;
    width: 186px;
    height: 186px;
  }

  .post-body-surface {
    padding: 24px 24px 28px;
    border-radius: 24px;
  }
}

@media (max-width: 680px) {
  .post-article {
    padding: 34px 0 26px;
  }

  .post-shell {
    padding: 26px 24px;
    border-radius: 26px;
  }

  .post-shell::before {
    top: -34px;
    right: -42px;
    width: 150px;
    height: 150px;
  }

  .post-back {
    margin-bottom: 22px;
  }

  .post-body-surface {
    padding: 22px 22px 26px;
    border-radius: 22px;
  }

  .post-shell--source-html {
    padding: 22px 18px 14px;
    border-radius: 20px;
  }

  .post-shell--source-html::before {
    display: none;
  }

  .post-shell--source-html .post-back {
    margin-bottom: 18px;
  }

  body[data-page="post"][data-post-language="ko"] .post-summary,
  body[data-page="post"][data-post-language="ko"] .post-body p,
  body[data-page="post"][data-post-language="ko"] .post-body li,
  body[data-page="post"][data-post-language="ko"] .post-body .hook {
    text-align: left;
    text-justify: auto;
  }
}

@media (max-width: 430px) {
  .post-shell {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .post-body-surface {
    padding: 20px 20px 24px;
  }

  .post-shell--source-html {
    padding: 22px 16px 14px;
  }

  .post-back a,
  .post-back-bottom {
    max-width: 100%;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}

/* ── Privacy Policy page ─────────────────────────────────────── */
.privacy-page-main {
  background: var(--paper);
}

.privacy-section {
  padding: 72px 0 96px;
}

.privacy-container {
  max-width: 780px;
}

.privacy-header {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.privacy-title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.privacy-meta {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.privacy-intro {
  margin-bottom: 48px;
}

.privacy-intro p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.privacy-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.privacy-block:last-child {
  border-bottom: none;
}

.privacy-block h2 {
  margin: 0 0 20px;
  font-size: 1.18rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.privacy-block h3 {
  margin: 24px 0 10px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: var(--font-body);
}

.privacy-block p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.72;
}

.privacy-block ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.72;
}

.privacy-block li {
  margin-bottom: 8px;
}

.privacy-block a {
  color: var(--plum);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-block a:hover {
  color: var(--plum-dark);
}

.privacy-contact {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.privacy-contact p {
  margin: 0 0 6px;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 12px;
  margin-bottom: 16px;
}

.privacy-table th,
.privacy-table td {
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  vertical-align: top;
  line-height: 1.5;
}

.privacy-table th {
  background: var(--paper-muted);
  font-weight: 600;
  text-align: left;
  color: var(--ink);
}

.privacy-table td {
  color: var(--ink-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 480ms ease, transform 480ms ease;
}

[data-reveal-start="scroll"] {
  transition-duration: 620ms;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logoTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--logo-ticker-distance, 50%)));
  }
}

@keyframes routePulse {
  0% {
    transform: translateY(-50%) translateX(0);
  }

  100% {
    transform: translateY(-50%) translateX(calc(100% - 18px));
  }
}

@media (max-width: 1180px) {
  .page-hero-inner,
  .two-column-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="services"] .hero-summary {
    max-width: 100%;
  }

  body[data-page="services"] .hero-graphic {
    width: 100%;
    justify-self: stretch;
  }

  html[lang="ko"] body[data-page="services"] .services-hero-summary-line,
  html[lang="ko"] body[data-page="services"] .services-hero-graphic-line {
    white-space: normal;
  }

  body[data-language="ko"][data-page="clients"] .clients-hero-summary-line {
    white-space: normal;
  }

  html[lang="ko"] body[data-page="tyrian"] .tyrian-hero-summary-line {
    white-space: normal;
  }

  .why-shell {
    grid-template-columns: 1fr;
  }

  .why-intro h2 {
    max-width: 100%;
    font-size: clamp(1.22rem, 3.4vw, 1.5rem);
  }

  .why-card--featured {
    transform: none;
  }

  .insights-masthead-shell,
  .insights-feature-shell {
    grid-template-columns: 1fr;
  }

  .insights-masthead-title {
    max-width: 12ch;
  }

  .ps-term-shell,
  .about-editorial-shell,
  .about-translation-shell {
    grid-template-columns: 1fr;
  }

  .ps-term-body,
  .about-quote-grid {
    grid-template-columns: 1fr;
  }

  .about-editorial-shell {
    grid-template-rows: none;
  }

  .about-editorial-intro,
  .about-editorial-philosophy {
    grid-column: auto;
    grid-row: auto;
    grid-template-rows: auto;
  }

  .about-editorial-signal-grid,
  .about-quote-grid {
    grid-row: auto;
    grid-template-rows: none;
  }

  .ps-term-shell {
    gap: 28px;
    align-items: start;
  }

  .ps-term-visual {
    justify-content: flex-start;
    align-self: auto;
    padding-bottom: 0;
  }

  .board-flow {
    grid-template-columns: 1fr;
  }

  .board-flow-card {
    min-height: 0;
  }

  .board-flow-card::before,
  .board-flow-card::after {
    display: none;
  }

  .about-editorial-intro {
    position: static;
    min-height: 0;
  }

  .signature-grid,
  .category-grid,
  .contact-layout,
  .contact-grid,
  .three-column-grid,
  .launch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .client-logo-pill {
    width: 184px;
    flex-basis: 184px;
  }

  .client-logo-image--rlwrld-marquee {
    max-height: 66px;
  }

  .conversion-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 26px;
  }

  .conversion-band-copy h2 {
    max-width: 100%;
  }

  .tyrian-conversion-title-line {
    white-space: normal;
  }

  .conversion-band-actions {
    justify-content: flex-start;
  }

  body[data-page="tyrian"] .page-hero {
    padding: 46px 0 58px;
  }

  body[data-page="tyrian"] .hero-note--tyrian-cta {
    max-width: 100%;
  }

  body[data-page="tyrian"] .tyrian-hero-media {
    min-height: 0;
    margin-top: 18px;
  }

  body[data-page="tyrian"] .tyrian-hero-media::before {
    inset: 22px 24px 18px 14px;
  }

  /* Blog — 1180px */
  .blog-featured-card {
    grid-template-columns: 240px 1fr;
  }

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

@media (max-width: 520px) {
  body[data-language="ko"][data-page="clients"] .clients-hero-summary-ko {
    font-size: clamp(0.62rem, 2.55vw, 0.7rem);
    line-height: 1.48;
    letter-spacing: -0.04em;
  }

  body[data-language="ko"][data-page="clients"] .clients-hero-summary-line {
    white-space: nowrap !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding-top: 0;
  }

  .why-intro,
  .why-highlight {
    padding: 24px 22px;
  }

  .why-highlight {
    min-height: 300px;
  }

  .why-highlight-copy {
    font-size: 1.08rem;
    padding-right: 154px;
  }

  html[lang="ko"] .why-highlight-copy {
    font-size: 1rem;
    padding-right: 62px;
  }

  .why-highlight-mascot {
    width: min(38%, 176px);
    max-width: 176px;
    right: 6px;
    bottom: 0;
  }

  .brand-tag {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(251, 248, 243, 0.98);
    box-shadow: var(--shadow-panel);
  }

  .site-nav .nav-item {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 10px;
  }

  .site-nav .nav-link-product {
    display: none;
  }

  .site-nav-icon {
    width: 22px;
    height: 22px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-submenu {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    padding: 2px 0 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    min-height: 40px;
    padding: 0 10px;
    color: var(--ink-muted);
  }

  .nav-submenu a::after {
    display: none;
  }

  .header-controls {
    gap: 10px;
  }

  .service-grid,
  .services-phase-grid,
  .process-strip,
  .hero-metric-grid,
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .beyond-ta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body[data-page="team"] .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-editorial-philosophy {
    padding: 26px;
  }

  .launch-grid {
    grid-template-columns: 1fr;
  }

  .hero-client-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-showcase-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-showcase-note {
    max-width: 100%;
  }

  .client-industry-cloud {
    gap: 12px;
  }

  .client-industry-bubble {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 0.74rem;
  }

  body[data-page="clients"] .hero-industry-cloud {
    min-height: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  body[data-page="clients"] .hero-graphic--industry .client-industry-bubble {
    position: static;
  }

  .client-logo-pill {
    width: 176px;
    flex-basis: 176px;
  }

  .product-floating-chip--bottom {
    display: none;
  }

  body[data-page="tyrian"] .tyrian-signin-panel .product-window {
    max-width: 100%;
    margin-left: 0;
  }
}

/* Blog — 920px */
@media (max-width: 920px) {
  html[lang="ko"] body[data-page="insights"] .blog-masthead-summary > span[lang="ko"],
  html[lang="ko"] body[data-page="insights"] .blog-linkedin-desc > span[lang="ko"] {
    display: block;
    max-width: 100%;
    white-space: normal;
    word-break: keep-all;
  }

  html[lang="ko"] body[data-page="insights"] .blog-masthead-summary .ko-fixed-line,
  html[lang="ko"] body[data-page="insights"] .blog-linkedin-desc .ko-fixed-line {
    display: inline;
    white-space: normal;
  }

  html[lang="ko"] body[data-page="insights"] .blog-masthead-summary .ko-fixed-line + .ko-fixed-line::before,
  html[lang="ko"] body[data-page="insights"] .blog-linkedin-desc .ko-fixed-line + .ko-fixed-line::before {
    content: " ";
  }

  .blog-masthead-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 28px;
  }

  .blog-masthead-aside {
    justify-content: flex-start;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-bg {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .blog-featured-bg.has-image {
    padding: 18px 22px;
  }

  .blog-featured-image {
    width: auto;
    height: auto;
    max-width: min(60%, 260px);
    max-height: 72%;
    margin: auto;
  }

  .blog-featured-content {
    padding: 28px 28px;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .blog-masthead-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .blog-masthead-summary {
    font-size: 0.94rem;
    line-height: 1.74;
  }

  .blog-linkedin-card {
    width: 100%;
    padding: 16px 18px 18px;
  }

  .blog-linkedin-desc {
    max-width: 100%;
  }

  .blog-featured-card {
    grid-template-columns: 108px minmax(0, 1fr);
    align-items: stretch;
  }

  .blog-featured-bg {
    min-height: 0;
    aspect-ratio: auto;
    height: 100%;
  }

  .blog-featured-bg.has-image {
    padding: 14px;
  }

  .blog-featured-image {
    max-width: 76%;
    max-height: 84px;
  }

  .blog-featured-title {
    font-size: clamp(1.28rem, 6vw, 1.68rem);
    line-height: 1.14;
  }

  .blog-featured-content {
    padding: 18px 18px 16px 16px;
    gap: 8px;
  }

  .blog-featured-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-inner {
    padding: 22px 20px;
  }
}

@media (max-width: 420px) {
  .blog-featured-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .blog-featured-bg.has-image {
    padding: 12px;
  }

  .blog-featured-image {
    max-width: 74%;
    max-height: 70px;
  }

  .blog-featured-content {
    padding: 16px 16px 15px 14px;
  }

  .blog-featured-title {
    font-size: clamp(1.18rem, 5.8vw, 1.42rem);
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1220px);
  }

  .why-highlight-mark {
    font-size: 3.7rem;
  }

  .why-highlight {
    min-height: 258px;
    padding: 22px 18px 18px;
  }

  .why-highlight-copy {
    padding-right: 118px;
    font-size: 1.03rem;
    line-height: 1.58;
  }

  html[lang="ko"] .why-highlight-copy {
    padding-right: 54px;
    font-size: 0.96rem;
    line-height: 1.54;
  }

  .why-highlight-mascot {
    width: 138px;
    max-width: 138px;
    right: 4px;
    bottom: 0;
  }

  html[lang="ko"] .why-highlight-copy-ko .ko-fixed-line {
    white-space: normal;
  }

  .why-card {
    padding-top: 24px;
  }

  .why-card-index {
    top: auto;
    left: auto;
    font-size: 0.74rem;
  }

  .header-bar {
    gap: 8px;
    min-height: 60px;
    padding: 10px 0;
  }

  .brand {
    flex: 0 1 auto;
    max-width: calc(100% - 120px);
  }

  .brand-logo {
    height: 26px;
  }

  .header-controls {
    width: auto;
    gap: 6px;
    justify-content: flex-end;
    flex: 0 0 auto;
  }

  .lang-switch {
    padding: 2px;
  }

  .lang-button {
    min-width: 34px;
    min-height: 32px;
    padding: 0 6px;
    font-size: 0.68rem;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .page-hero {
    padding: 56px 0 60px;
  }

  .insights-masthead {
    padding: 42px 0 18px;
  }

  .insights-masthead-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .insights-masthead-summary {
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .insights-masthead-aside,
  .insights-featured-card,
  .insights-rail-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  body[data-page="home"] .page-hero {
    padding: 42px 0 42px;
  }

  .page-hero-inner {
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(1.82rem, 8vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .hero-summary {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  body[data-page="clients"] .hero-summary-break {
    display: none;
  }

  .hero-note {
    font-size: 0.92rem;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 0.76rem;
  }

  .hero-actions,
  .button-row {
    margin-top: 22px;
  }

  .hero-client-strip {
    margin-top: 0;
    padding: 14px 14px 12px;
    border-radius: 20px;
  }

  .hero-client-kicker,
  .hero-client-link {
    font-size: 0.7rem;
  }

  .hero-graphic {
    min-height: auto;
    padding: 22px;
  }

  .hero-graphic--industry h2 {
    max-width: 100%;
  }

  .strength-card {
    min-height: auto;
  }

  .strength-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .strength-title {
    font-size: 1rem;
  }

  .strength-text {
    font-size: 0.84rem;
  }

  .section {
    padding: 62px 0;
  }

  .client-showcase {
    padding-top: 42px;
  }

  .insights-feature-section,
  .insights-collection-section {
    padding-top: 8px;
  }

  .client-industry-band {
    padding-top: 14px;
  }

  body[data-page="tyrian"] .page-hero {
    padding: 28px 0 42px;
  }

  body[data-page="about"] .page-hero {
    padding: 44px 0 36px;
  }

  .ps-term-phonetic {
    margin-bottom: 28px;
  }

  .ps-term-visual-card {
    width: 100%;
    max-width: 420px;
    padding: 0;
    border-radius: 0;
  }

  .ps-term-visual-frame {
    border-radius: 0;
  }

  .about-editorial-section {
    padding: 44px 0 54px;
  }

  .about-editorial-intro,
  .about-editorial-philosophy {
    padding: 24px 22px;
    border-radius: 26px;
  }

  .about-editorial-head,
  .about-philosophy-head {
    grid-template-rows: auto;
    min-height: 0;
  }

  .about-editorial-title,
  .about-philosophy-head h2 {
    max-width: 12ch;
    min-height: 0;
    font-size: clamp(2.18rem, 9.2vw, 3rem);
  }

  .about-editorial-summary,
  .about-philosophy-head .section-copy {
    margin-top: 18px;
    font-size: 0.96rem;
  }

  .about-editorial-signal {
    padding: 22px 0 18px;
  }

  .about-quote-card {
    padding: 22px 0 18px;
    border-radius: 0;
  }

  .about-quote-card strong {
    font-size: 1rem;
  }

  .product-window-bar {
    min-height: 42px;
    padding: 0 14px;
  }

  .product-window-label {
    font-size: 0.64rem;
  }

  .product-floating-chip {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.58rem;
  }

  .product-floating-chip--top {
    top: 52px;
    left: 12px;
  }

  body[data-page="tyrian"] .tyrian-mini-list {
    gap: 8px;
  }

  .client-industry-cloud {
    gap: 10px;
  }

  .client-industry-bubble {
    min-height: 44px;
    padding-inline: 15px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .client-showcase-shell {
    padding: 0;
    border-radius: 0;
  }

  .conversion-band {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .client-showcase-head {
    gap: 18px;
    margin-bottom: 20px;
  }

  body[data-page="team"] .page-hero {
    padding: 34px 0 42px;
  }

  .team-founders-grid {
    grid-template-columns: 1fr;
  }

  .team-profile-section {
    padding-top: 54px;
  }

  .founder-card {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 20px;
  }

  .founder-card-media {
    width: min(180px, 42vw);
    margin: 0 auto;
    border-radius: 20px;
  }

  .founder-media-link {
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .founder-card-body {
    gap: 14px;
    padding-block: 0;
  }

  .founder-role-label {
    gap: 9px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
  }

  .founder-role-label::before {
    width: 16px;
  }

  .founder-role-title {
    font-size: 0.92rem;
    line-height: 1.36;
  }

  .founder-name {
    font-size: 2.08rem;
  }

  .founder-focus {
    min-height: 0;
    max-width: none;
    font-size: 0.98rem;
  }

  .founder-summary p {
    font-size: 0.92rem;
  }

  .client-showcase-title {
    font-size: 1.36rem;
    white-space: normal;
  }

  .client-showcase-note {
    font-size: 0.88rem;
  }

  .client-showcase-actions {
    width: 100%;
    justify-content: flex-end;
  }

  body[data-page="home"] .home-testimonial-section {
    padding-top: 0;
    padding-bottom: 14px;
  }

  body[data-page="home"] .home-testimonial-shell {
    gap: 20px;
    padding: 26px 18px 18px;
    border: 1px solid rgba(118, 84, 142, 0.12);
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 239, 231, 0.9)),
      radial-gradient(circle at top right, rgba(136, 41, 195, 0.12), transparent 34%),
      radial-gradient(circle at bottom left, rgba(190, 153, 85, 0.08), transparent 42%);
    box-shadow: 0 24px 56px rgba(24, 17, 25, 0.08);
    overflow: hidden;
  }

  body[data-page="home"] .home-testimonial-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 24%);
    pointer-events: none;
  }

  body[data-page="home"] .home-testimonial-shell > * {
    position: relative;
    z-index: 1;
  }

  body[data-page="home"] .home-testimonial-head {
    max-width: none;
    text-align: left;
  }

  html[lang="en"] body[data-page="home"] .home-testimonial-head h2,
  body[data-language="en"][data-page="home"] .home-testimonial-head h2 {
    max-width: 13.2ch;
  }

  html[lang="en"] body[data-page="home"] .home-testimonial-head h2 > span[lang="en"],
  body[data-language="en"][data-page="home"] .home-testimonial-head h2 > span[lang="en"] {
    font-size: 0.84em;
    line-height: 1.08;
    letter-spacing: -0.024em;
    text-wrap: balance;
  }

  body[data-page="home"] .home-testimonial-head .section-copy {
    max-width: none;
    margin-inline: 0;
  }

  html[lang="ko"] body[data-page="home"] .home-testimonial-head h2,
  body[data-language="ko"][data-page="home"] .home-testimonial-head h2 {
    max-width: 14ch;
  }

  html[lang="ko"] body[data-page="home"] .home-testimonial-head h2 > span[lang="ko"],
  body[data-language="ko"][data-page="home"] .home-testimonial-head h2 > span[lang="ko"] {
    font-size: 0.8em;
    line-height: 1.12;
    letter-spacing: -0.048em;
    text-wrap: balance;
    white-space: normal;
  }

  html[lang="en"] body[data-page="home"] .home-testimonial-head .section-copy > span[lang="en"],
  body[data-language="en"][data-page="home"] .home-testimonial-head .section-copy > span[lang="en"] {
    max-width: 30ch;
    text-wrap: pretty;
  }

  html[lang="ko"] body[data-page="home"] .home-testimonial-head .section-copy > span[lang="ko"],
  body[data-language="ko"][data-page="home"] .home-testimonial-head .section-copy > span[lang="ko"] {
    max-width: 31ch;
    font-size: 0.9rem;
    line-height: 1.58;
    letter-spacing: -0.02em;
    text-wrap: pretty;
    word-break: keep-all;
  }

  html[lang="ko"] body[data-page="home"] .home-testimonial-head .testimonial-copy-tail,
  body[data-language="ko"][data-page="home"] .home-testimonial-head .testimonial-copy-tail {
    display: block;
    width: fit-content;
    max-width: none;
    margin-top: 2px;
    white-space: nowrap !important;
    text-wrap: nowrap;
    word-break: normal !important;
  }

  body[data-page="home"] .testimonial-proof-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  body[data-page="home"] .testimonial-proof-track {
    width: max-content;
    animation: none;
  }

  body[data-page="home"] .testimonial-proof-row {
    gap: 16px;
  }

  body[data-page="home"] .testimonial-proof-card {
    flex-basis: min(86vw, 348px);
    width: min(86vw, 348px);
    min-height: 0;
    gap: 18px;
    padding: 22px 20px 20px;
    border-radius: 24px;
  }

  body[data-page="home"] .testimonial-proof-brand {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  body[data-page="home"] .testimonial-proof-context {
    min-height: 27px;
    padding-inline: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  body[data-page="home"] .testimonial-proof-quote {
    font-size: 1rem;
    line-height: 1.68;
  }

  html[lang="en"] body[data-page="home"] .testimonial-proof-quote > span[lang="en"],
  body[data-language="en"][data-page="home"] .testimonial-proof-quote > span[lang="en"] {
    max-width: none;
    text-wrap: pretty;
  }

  html[lang="ko"] body[data-page="home"] .testimonial-proof-quote > span[lang="ko"],
  body[data-language="ko"][data-page="home"] .testimonial-proof-quote > span[lang="ko"] {
    max-width: none;
    text-wrap: pretty;
    word-break: keep-all;
  }

  body[data-page="home"] .testimonial-proof-attribution {
    gap: 6px;
  }

  body[data-page="home"] .testimonial-proof-footer {
    gap: 10px;
    padding-top: 12px;
  }

  body[data-page="home"] .testimonial-proof-footer--with-portrait {
    gap: 12px;
  }

  body[data-page="home"] .testimonial-proof-media {
    width: 66px;
    height: 66px;
    border-radius: 16px;
  }

  body[data-page="home"] .testimonial-proof-portrait {
    width: 100%;
    height: 100%;
  }

  body[data-page="home"] .testimonial-proof-attribution strong {
    font-size: 0.94rem;
  }

  body[data-page="home"] .testimonial-proof-attribution p {
    font-size: 0.78rem;
    line-height: 1.42;
    letter-spacing: 0.03em;
  }

  body[data-page="home"] .testimonial-proof-logo {
    max-width: 120px;
    height: 22px;
    max-height: 22px;
  }

  body[data-page="home"] .testimonial-proof-card--imprimed .testimonial-proof-logo {
    max-width: 76px;
    height: 30px;
    max-height: 30px;
  }

  .client-roster-testimonial {
    padding: 16px 15px 14px;
    border-radius: 18px;
  }

  .client-roster-testimonial-meta--with-portrait {
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
  }

  .client-roster-testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .client-roster-testimonial-meta p {
    line-height: 1.42;
    letter-spacing: 0.02em;
  }

  .client-roster-testimonial-quote {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .client-logo-marquee {
    mask-image: none;
    -webkit-mask-image: none;
    overflow-x: auto;
    padding: 14px 0 10px;
    border-radius: 22px;
  }

  .client-logo-pill {
    width: 164px;
    flex-basis: 164px;
    gap: 8px;
  }

  .client-logo-pill--hero {
    width: 144px;
    flex-basis: 144px;
  }

  .client-logo-surface {
    min-height: 76px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .client-logo-pill--hero .client-logo-surface {
    min-height: 64px;
  }

  .client-logo-image,
  .client-logo-svg {
    max-height: 38px;
  }

  .client-logo-image--wide {
    max-height: 30px;
  }

  .client-logo-image--icon {
    max-height: 44px;
  }

  .client-logo-image--rlwrld {
    max-height: 40px;
  }

  .client-logo-image--rlwrld-marquee {
    max-height: 52px;
  }

  .client-logo-image--dnotitia {
    width: 80%;
    max-width: 148px;
    max-height: 28px;
  }

  .client-logo-image--bear {
    max-height: 36px;
  }

  .client-logo-image--hopae {
    width: 80%;
    max-width: 156px;
    max-height: 28px;
  }

  .client-logo-image--skhynix {
    max-height: 34px;
  }

  .client-logo-image--xcena {
    max-height: 26px;
  }

  .client-logo-image--xcena-full {
    width: 84%;
    max-width: 160px;
  }

  .client-logo-image--safire {
    width: 92%;
    max-width: 172px;
    max-height: 36px;
  }

  .client-logo-image--sendbird {
    width: 86%;
    max-width: 156px;
    max-height: 36px;
  }

  .logo-wordmark-text {
    font-size: 1.02rem;
  }

  .logo-wordmark--bear {
    gap: 10px;
  }

  .logo-inline-symbol--upstage {
    width: 22px;
  }

  .logo-inline-symbol--bear {
    width: 34px;
  }

  .logo-wordmark-title {
    font-size: 1.2rem;
  }

  .logo-wordmark-subtitle {
    font-size: 0.72rem;
  }

  .logo-inline-symbol--hopae {
    width: 20px;
  }

  .client-logo-name {
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    min-height: 1.35em;
  }

  .signature-grid,
  .category-grid,
  .contact-layout,
  .contact-grid,
  .nav-grid,
  .client-roster-grid,
  .mandate-grid,
  .service-grid,
  .services-phase-grid,
  .beyond-ta-services,
  .insight-grid,
  .three-column-grid {
    grid-template-columns: 1fr;
  }

  .beyond-ta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .beyond-ta-band {
    padding: 28px 22px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .contact-brief-grid {
    grid-template-columns: 1fr;
  }

  .footer-bar {
    flex-direction: column;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a.footer-link--brochure {
    width: fit-content;
  }

  .footer-copyright {
    line-height: 1.6;
  }

  .button,
  .button-secondary,
  .button-light {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  body[data-page="contact"] .contact-page-main {
    padding-top: 28px;
  }

  body[data-page="contact"] .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body[data-page="contact"] .contact-sidebar {
    position: static;
    grid-template-rows: none;
    height: auto;
  }

  body[data-page="contact"] .contact-form-head h1,
  body[data-page="contact"] .contact-form-head h2 {
    max-width: none;
  }
}

@media (max-width: 920px) {
  body[data-page="contact"] .contact-page-main {
    padding-top: 22px;
  }

  body[data-page="contact"] .contact-sidebar-card,
  body[data-page="contact"] .contact-form-card--premium {
    padding: 24px;
    border-radius: 28px;
  }

  body[data-page="contact"] .field-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  body[data-page="contact"] .field-help--phone {
    max-width: none;
  }

  body[data-page="contact"] .contact-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body[data-page="contact"] .contact-form-note {
    max-width: none;
    align-self: flex-start;
  }
}

@media (max-width: 680px) {
  body[data-page="contact"] .contact-page-main {
    padding-top: 14px;
  }

  body[data-page="contact"] .contact-single-section {
    margin-top: 0;
    padding-bottom: 64px;
  }

  body[data-page="contact"] .contact-sidebar-card,
  body[data-page="contact"] .contact-form-card--premium {
    padding: 22px 20px;
    border-radius: 24px;
  }

  body[data-page="contact"] .contact-sidebar-title {
    font-size: clamp(1.64rem, 8vw, 2.18rem);
  }

  body[data-page="contact"] .contact-form-chrome {
    margin-bottom: 18px;
  }

  body[data-page="contact"] .contact-form-head h1,
  body[data-page="contact"] .contact-form-head h2 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  body[data-page="contact"] .contact-form-trust-item {
    font-size: 0.68rem;
  }

  body[data-page="contact"] .field input,
  body[data-page="contact"] .field select,
  body[data-page="contact"] .field textarea {
    padding: 15px 16px;
    border-radius: 16px;
  }

  body[data-page="contact"] .field textarea {
    min-height: 152px;
    height: auto;
  }

  body[data-page="contact"] .contact-form-actions .button {
    min-width: 0;
  }

  html[lang="ko"] body[data-page="contact"] .field-help--phone {
    font-size: clamp(0.6rem, 2.75vw, 0.72rem);
    line-height: 1.4;
  }
}

.mobile-cta-bar {
  display: none;
}

html[lang="ko"] .mobile-cta-bar[data-hide-language~="ko"],
body[data-language="ko"] .mobile-cta-bar[data-hide-language~="ko"] {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 1180px) {
  .brand-tag {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav .nav-item {
    width: auto;
    flex-direction: row;
    align-items: center;
  }

  .site-nav a {
    justify-content: center;
    min-height: auto;
    padding: 0;
    font-size: 0.7rem;
    letter-spacing: 0.11em;
  }

  .site-nav a::after {
    display: block;
  }

  .nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 130px;
    padding: 10px 0 12px;
    border: none;
    border-radius: 0 0 6px 6px;
    background: rgba(251, 248, 243, 0.99);
    box-shadow: 0 6px 20px rgba(20, 14, 24, 0.07);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(3px);
  }

  .nav-item--has-submenu:hover .nav-submenu,
  .nav-item--has-submenu:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-submenu a {
    min-height: 34px;
    padding: 0 16px;
    color: var(--ink-soft);
  }

  .page-hero-inner,
  .ps-term-shell,
  .about-translation-shell,
  .insights-masthead-shell,
  .insights-feature-shell,
  .beyond-ta-inner,
  .contact-layout,
  .two-column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .page-hero-inner {
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
    gap: 30px;
  }

  body[data-page="clients"] .page-hero-inner {
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  }

  body[data-page="services"] .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  }

  body[data-page="about"] .page-hero-inner {
    grid-template-columns: minmax(0, 0.96fr) minmax(300px, 1.04fr);
  }

  body[data-page="team"] .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  }

  body[data-page="tyrian"] .page-hero-inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .about-editorial-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto auto;
  }

  .about-editorial-intro {
    grid-column: 1;
    grid-row: 1 / span 4;
    grid-template-rows: subgrid;
  }

  .about-editorial-philosophy {
    grid-column: 2;
    grid-row: 1 / span 4;
    grid-template-rows: subgrid;
  }

  .about-editorial-signal-grid,
  .about-quote-grid {
    grid-row: 2 / span 3;
    grid-template-rows: subgrid;
  }

  .signature-grid,
  .category-grid,
  .contact-grid,
  .three-column-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid,
  .team-founders-grid,
  .client-roster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-phase-grid,
  .hero-metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .mandate-grid,
  .insight-grid,
  .launch-grid,
  .process-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .beyond-ta-services,
  .contact-brief-grid,
  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="contact"] .contact-page-main {
    padding-top: 12px;
  }

  body[data-page="contact"] .contact-grid {
    grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
    gap: 18px;
  }

  body[data-page="contact"] .contact-sidebar {
    position: relative;
    display: grid;
    grid-template-rows: auto auto;
    gap: 14px;
    height: 100%;
  }
}

@media (max-width: 767px) {
  :root {
    --container: min(100vw - 26px, 1220px);
    --radius-md: 18px;
    --radius-lg: 22px;
    --shadow-soft: 0 18px 42px rgba(24, 17, 25, 0.08);
    --shadow-panel: 0 24px 64px rgba(21, 14, 24, 0.16);
  }

  html {
    background: #f7f1ea;
  }

  body {
    background:
      linear-gradient(180deg, rgba(251, 247, 241, 0.98), rgba(245, 238, 230, 0.98)),
      radial-gradient(circle at top right, rgba(136, 41, 195, 0.06), transparent 26%);
  }

  body.has-mobile-cta {
    padding-bottom: 112px;
  }

  body.nav-open {
    overflow: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 58;
    background: rgba(25, 17, 29, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  body.nav-open::before {
    opacity: 1;
  }

  .site-header {
    z-index: 70;
    border-bottom-color: rgba(53, 39, 57, 0.06);
    background: rgba(249, 244, 238, 0.82);
    backdrop-filter: blur(22px);
  }

  .header-bar {
    min-height: 64px;
    gap: 10px;
    padding: 12px 0;
  }

  .brand {
    max-width: calc(100% - 112px);
  }

  .brand-logo {
    height: 24px;
  }

  .header-controls {
    gap: 8px;
    flex: 0 0 auto;
  }

  .lang-switch {
    flex: 0 0 auto;
    padding: 2px;
    border-color: rgba(53, 39, 57, 0.08);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 22px rgba(28, 20, 31, 0.06);
  }

  .lang-button {
    min-width: 34px;
    min-height: 32px;
    padding: 0 7px;
    font-size: 0.66rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-toggle::before,
  .nav-toggle span {
    content: "";
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .nav-toggle::before {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .nav-toggle span {
    margin: 0;
    top: 50%;
  }

  .nav-toggle span:first-child {
    transform: translate(-50%, calc(-50% - 7px));
  }

  .nav-toggle span:last-child {
    transform: translate(-50%, calc(-50% + 7px));
  }

  body.nav-open .nav-toggle::before {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.5);
  }

  body.nav-open .nav-toggle span:first-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: calc(68px + env(safe-area-inset-top));
    right: 14px;
    left: auto;
    z-index: 69;
    display: grid;
    grid-auto-rows: min-content;
    align-content: start;
    width: min(calc(100vw - 28px), 320px);
    max-height: min(calc(100dvh - 96px - env(safe-area-inset-bottom)), 520px);
    overflow-y: auto;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(53, 39, 57, 0.08);
    border-radius: 24px;
    background: rgba(251, 248, 243, 0.98);
    box-shadow: 0 26px 60px rgba(24, 17, 25, 0.18);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transform: translate3d(18px, -6px, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-nav > a,
  .site-nav .nav-item {
    width: 100%;
  }

  .site-nav .nav-item {
    display: grid;
    gap: 6px;
    align-items: stretch;
  }

  .site-nav a {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    font-size: 0.71rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  }

  .site-nav a.is-current {
    background: rgba(136, 41, 195, 0.1);
    color: var(--plum-deep);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-link-product {
    gap: 8px;
  }

  .site-nav .nav-link-brochure {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    padding: 12px 14px;
    border: 1px solid rgba(136, 41, 195, 0.14);
    border-radius: 16px;
    background:
      linear-gradient(135deg, rgba(136, 41, 195, 0.12), rgba(255, 255, 255, 0.92)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 244, 238, 0.92));
    color: var(--plum-deep);
    box-shadow: 0 18px 34px rgba(28, 20, 31, 0.08);
  }

  .site-nav .nav-link-brochure::after {
    display: none;
  }

  .nav-link-brochure-main {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .nav-link-brochure-badge {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(136, 41, 195, 0.14);
    color: var(--plum-deep);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .site-nav-icon {
    width: 22px;
    height: 22px;
  }

  .site-nav .nav-item--has-submenu::after {
    content: none;
  }

  .nav-submenu {
    position: static;
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    min-height: 40px;
    margin-left: 0;
    padding: 0 14px 0 16px;
    border-radius: 12px;
    background: rgba(94, 71, 118, 0.06);
    border-left: 2px solid rgba(136, 41, 195, 0.12);
    color: var(--ink-soft);
  }

  .page-hero {
    padding: 30px 0 34px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  body[data-page="home"] .page-hero,
  body[data-page="clients"] .page-hero,
  body[data-page="tyrian"] .page-hero {
    padding-top: 28px;
    padding-bottom: 28px;
    min-height: auto;
  }

  body[data-page="home"] .page-hero {
    padding-bottom: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  body[data-page="about"] .page-hero {
    padding: 32px 0 34px;
  }

  .page-hero-inner {
    gap: 18px;
  }

  body[data-page="home"] .page-hero-inner,
  body[data-page="clients"] .page-hero-inner,
  body[data-page="services"] .page-hero-inner,
  body[data-page="about"] .page-hero-inner,
  body[data-page="team"] .page-hero-inner,
  body[data-page="tyrian"] .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-hero-inner > * {
    min-width: 0;
  }

  .hero-copy,
  body[data-page="home"] .hero-copy,
  body[data-page="clients"] .hero-copy,
  body[data-page="services"] .hero-copy,
  body[data-page="about"] .hero-copy,
  body[data-page="team"] .hero-copy,
  body[data-page="tyrian"] .hero-copy {
    max-width: none;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .hero-title {
    font-size: clamp(2.24rem, 11vw, 3.08rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    text-wrap: balance;
  }

  .section-head h1,
  .contact-form-head h1,
  .contact-form-head h2 {
    font-size: clamp(2.08rem, 9.4vw, 2.68rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .hero-summary {
    max-width: none;
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.56;
  }

  .hero-note {
    max-width: none;
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .hero-actions,
  .button-row,
  .contact-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .button,
  .button-secondary,
  .button-light {
    width: auto;
    max-width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hero-actions,
  .button-row,
  .conversion-band-actions,
  .contact-actions {
    align-items: flex-start;
  }

  body[data-page="contact"] .contact-form-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  body[data-page="contact"] .contact-form-actions .button {
    min-width: 0;
  }

  body[data-page="home"] .hero-actions .button:first-child,
  .conversion-band .button:first-child,
  .mobile-cta-button {
    background: var(--white);
    color: var(--plum-deep);
    box-shadow: 0 18px 36px rgba(24, 16, 30, 0.18);
  }

  .button-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .hero-graphic,
  .diagram-panel,
  .contact-panel,
  .content-panel,
  .editorial-card,
  .nav-card,
  .detail-card,
  .mandate-card,
  .service-card,
  .category-card,
  .insight-card,
  .contact-form-card,
  .launch-card,
  .founder-card,
  .client-roster-card,
  .blog-linkedin-card,
  .blog-card-inner,
  .blog-featured-card,
  .contact-sidebar-card {
    border-radius: 24px;
  }

  .hero-graphic {
    padding: 20px;
  }

  body[data-page="services"] .hero-graphic,
  body[data-page="clients"] .hero-graphic,
  body[data-page="home"] .hero-graphic,
  body[data-page="team"] .hero-graphic,
  body[data-page="about"] .hero-graphic {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  body[data-page="tyrian"] .tyrian-hero-media {
    width: 100%;
  }

  body[data-page="home"] .hero-graphic {
    padding: 14px 14px 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
      radial-gradient(circle at top right, rgba(198, 143, 255, 0.14), transparent 36%);
  }

  body[data-page="home"] .hero-strengths {
    position: relative;
    overflow: hidden;
  }

  body[data-page="home"] .hero-strengths.is-scrollable::after {
    content: "";
    position: absolute;
    top: 50px;
    right: 0;
    bottom: 14px;
    width: 34px;
    border-radius: 0 24px 24px 0;
    background: linear-gradient(90deg, rgba(80, 44, 114, 0), rgba(80, 44, 114, 0.82));
    opacity: 1;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  body[data-page="home"] .hero-strengths.is-scrolled::after {
    opacity: 0;
  }

  .strength-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 10px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .strength-scroll-hint::after {
    content: "→";
    font-size: 0.86rem;
    line-height: 1;
  }

  .strength-scroll-hint.is-scrolled {
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
  }

  body[data-page="home"] .strength-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 18px 0 2px;
    margin-top: 8px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body[data-page="home"] .strength-grid::-webkit-scrollbar,
  .client-industry-cloud::-webkit-scrollbar,
  .blog-filter-bar::-webkit-scrollbar {
    display: none;
  }

  body[data-page="home"] .strength-card {
    flex: 0 0 clamp(220px, 70vw, 252px);
    width: clamp(220px, 70vw, 252px);
    min-width: clamp(220px, 70vw, 252px);
    scroll-snap-align: start;
    min-height: 0;
    padding: 12px;
    border-radius: 20px;
  }

  body[data-page="home"] .strength-card > :first-child {
    margin-top: 0;
  }

  body[data-page="home"] .strength-card > :last-child {
    margin-bottom: 0;
  }

  body[data-page="home"] .strength-label {
    margin-bottom: 6px;
  }

  body[data-page="home"] .strength-title {
    margin-top: 0;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  body[data-page="home"] .strength-title-en--compact {
    white-space: normal;
    font-size: 1em;
    letter-spacing: normal;
  }

  body[data-page="home"] .strength-text {
    margin-top: 5px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  body[data-page="home"] .client-showcase {
    position: relative;
    z-index: 4;
    margin-top: 16px;
    padding: 0 0 16px;
    min-height: 0;
    background: transparent;
    border-top: 0;
  }

  body[data-page="services"] .page-hero,
  body[data-page="clients"] .page-hero,
  body[data-page="tyrian"] .page-hero {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  body[data-page="home"] .client-showcase > .container {
    padding: 0;
  }

  body[data-page="home"] .client-showcase-shell {
    padding: 12px 18px 8px;
    border: 1px solid rgba(53, 39, 57, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 46px rgba(24, 17, 25, 0.08);
  }

  body[data-page="home"] .client-showcase-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 12px;
    margin-bottom: 6px;
  }

  body[data-page="home"] .client-showcase-copy {
    flex: 1 1 auto;
    min-width: 0;
  }

  body[data-page="home"] .client-showcase-title {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plum-deep);
  }

  body[data-page="home"] .client-showcase-actions {
    width: auto;
    flex: 0 0 auto;
    margin-left: auto;
    justify-content: flex-end;
    align-self: center;
  }

  body[data-page="home"] .client-showcase-link {
    white-space: nowrap;
    font-size: 0.72rem;
    padding-bottom: 2px;
  }

  body[data-page="home"] .client-logo-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 0 0;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  body[data-page="home"] .client-logo-marquee .client-logo-pill {
    padding: 2px 18px;
  }

  body[data-page="home"] .client-logo-marquee .client-logo-image,
  body[data-page="home"] .client-logo-marquee .logo-wordmark--upstage {
    filter: none;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-kicker,
  .mini-kicker {
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .section-kicker::before,
  .mini-kicker::before {
    width: 24px;
  }

  h2 {
    font-size: clamp(1.76rem, 8vw, 2.34rem);
    line-height: 1.06;
  }

  .section-copy,
  .body-copy,
  .detail-card p,
  .service-card p,
  .editorial-card p,
  .insight-card p,
  .category-card p,
  .content-panel p,
  .mandate-card p,
  .contact-panel p,
  .launch-card p {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .signature-grid,
  .category-grid,
  .contact-layout,
  .contact-grid,
  .nav-grid,
  .client-roster-grid,
  .mandate-grid,
  .service-grid,
  .services-phase-grid,
  .beyond-ta-services,
  .insight-grid,
  .three-column-grid,
  .two-column-grid,
  .launch-grid,
  .process-strip,
  .field-grid,
  .contact-brief-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-shell {
    gap: 16px;
    margin-bottom: 28px;
  }

  body[data-page="home"] .why-section {
    padding-top: 16px;
  }

  .why-intro,
  .why-highlight {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .why-highlight {
    min-height: 0;
    gap: 8px;
    padding: 24px 20px 14px;
  }

  .why-highlight-copy {
    max-width: none;
    padding-right: 0;
    font-size: 1rem;
  }

  html[lang="ko"] .why-highlight-copy {
    padding-right: 0;
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: -0.025em;
  }

  html[lang="ko"] body[data-page="home"] .why-highlight-copy-ko .ko-fixed-line {
    white-space: nowrap;
  }

  .why-highlight-mascot {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    width: min(34vw, 112px);
    max-width: 112px;
    margin-top: 0;
  }

  .why-card {
    padding-top: 18px;
  }

  .why-card strong {
    font-size: 1.05rem;
  }

  .ps-term-shell {
    gap: 24px;
  }

  .ps-term-body {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ps-term-def {
    padding-left: 14px;
  }

  .ps-term-def p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .ps-term-def-en .ps-term-def-block + .ps-term-def-block {
    margin-top: 12px;
  }

  .ps-term-def-en .ps-term-def-block--punch {
    margin-top: 18px;
  }

  html[lang="ko"] body[data-page="about"] .ps-term-def-ko-fixed {
    font-size: 0.96rem;
    line-height: 1.66;
    letter-spacing: -0.01em;
  }

  .ps-term-meta-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ps-term-meta-text {
    font-size: 0.92rem;
  }

  html[lang="ko"] body[data-page="about"] .ps-term-def-ko-fixed .ps-term-mobile-nowrap {
    white-space: nowrap;
  }

  html[lang="ko"] body[data-page="about"] .ps-term-def-ko-fixed .ps-term-mobile-break {
    display: block;
  }

  html[lang="ko"] body[data-page="about"] .ps-term-def-ko-fixed .ps-term-mobile-nowrap--continued::before {
    content: none;
  }

  .ps-term-visual {
    padding-bottom: 0;
  }

  .about-editorial-section {
    padding: 46px 0 52px;
  }

  .about-editorial-intro,
  .about-editorial-philosophy {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .about-editorial-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .about-brochure-note {
    max-width: none;
    font-size: 0.8rem;
  }

  .about-editorial-signal-grid,
  .about-quote-grid {
    margin-top: 20px;
    padding-top: 8px;
  }

  .about-editorial-title,
  .about-philosophy-head h2 {
    max-width: none;
    min-height: 0;
    font-size: clamp(2rem, 9vw, 2.76rem);
  }

  .services-phase {
    margin-bottom: 36px;
  }

  .services-phase-header {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    padding-left: 12px;
  }

  .services-phase-name {
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .services-phase-desc {
    margin: 8px 0 0;
    font-size: 0.88rem;
  }

  body[data-page="services"] .hero-metric-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  body[data-page="services"] .hero-metric {
    padding: 16px 0 0;
  }

  body[data-page="services"] .hero-metric strong {
    text-align: left;
    font-size: 1rem;
  }

  body[data-page="services"] .hero-metric-detail-text[lang="en"],
  body[data-page="services"] .hero-metric-detail-text[lang="ko"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }

  body[data-page="services"] .hero-metric-detail-text[lang="en"] {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  body[data-page="services"] .hero-metric-detail-text[lang="en"] .hero-metric-keyline {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 16px;
    font-size: 0.7rem;
    line-height: 1.22;
    text-align: center;
    white-space: normal;
    text-wrap: balance;
  }

  body[data-page="services"] .hero-metric-detail-text[lang="ko"] .hero-metric-keyline {
    width: auto;
    justify-content: flex-start;
    padding: 0 10px;
    font-size: 0.7rem;
  }

  .process-strip {
    padding-top: 8px;
  }

  .process-step {
    min-height: 0;
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .process-step::before {
    left: 18px;
  }

  .process-step h3,
  .process-step p {
    max-width: none;
  }

  body[data-page="clients"] .hero-graphic--industry {
    padding: 20px 18px 18px;
  }

  .client-industry-cloud {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .client-industry-bubble {
    flex: 0 0 auto;
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .client-roster-card-link {
    padding: 18px;
    gap: 12px;
  }

  body[data-page="clients"] .client-roster-card .client-logo-surface {
    cursor: default;
  }

  body[data-page="clients"] .client-roster-card-link::after {
    display: none;
  }

  body[data-page="clients"] .client-roster-card .client-logo-image--safire {
    width: 74%;
    max-width: 154px;
    max-height: 32px;
  }

  .client-roster-card h3 {
    font-size: 1.2rem;
  }

  .client-roster-note {
    font-size: 0.92rem;
  }

  .team-profile-section {
    padding-top: 48px;
  }

  .founder-card {
    padding: 20px;
    gap: 18px;
  }

  .founder-card-media {
    width: min(100%, 220px);
    margin: 0 auto;
    border-radius: 22px;
  }

  .founder-card-body {
    gap: 16px;
    padding-block: 0;
  }

  .founder-name {
    font-size: clamp(2.12rem, 12vw, 2.68rem);
  }

  .founder-summary p {
    font-size: 0.94rem;
  }

  body[data-page="tyrian"] .page-hero-inner {
    gap: 18px;
  }

  body[data-page="tyrian"] .tyrian-hero-meta {
    margin-bottom: 14px;
    gap: 10px;
  }

  body[data-page="tyrian"] .launch-badge {
    min-height: 32px;
    padding: 0 12px 0 30px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  body[data-page="tyrian"] .hero-kicker {
    padding-left: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  body[data-page="tyrian"] .hero-note--tyrian-cta {
    font-size: 0.86rem;
  }

  .tyrian-hero-media::before,
  .tyrian-mobile-panel::before {
    inset: 22px;
    border-radius: 28px;
  }

  .product-window {
    border-radius: 28px;
  }

  .blog-masthead {
    padding: 34px 0 0;
  }

  .blog-masthead-inner {
    gap: 18px;
    padding-bottom: 22px;
  }

  .blog-channel-label {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .blog-masthead-title {
    font-size: clamp(2.18rem, 10vw, 3rem);
  }

  .blog-masthead-summary {
    margin-top: 14px;
    font-size: 0.95rem;
  }

  .blog-linkedin-card {
    width: 100%;
    padding: 18px;
  }

  .blog-featured-section,
  .blog-grid-section {
    padding-top: 28px;
  }

  .blog-featured-content {
    padding: 24px 20px;
    gap: 12px;
  }

  .blog-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .blog-filter-btn {
    flex: 0 0 auto;
    height: 36px;
  }

  .blog-card-inner {
    padding: 22px 20px 20px;
  }

  body[data-page="contact"] .contact-page-main {
    padding-top: 12px;
  }

  body[data-page="contact"] .contact-grid {
    gap: 18px;
  }

  body[data-page="contact"] .contact-form-card--premium {
    order: -1;
  }

  body[data-page="contact"] .contact-sidebar-card,
  body[data-page="contact"] .contact-form-card--premium {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .footer {
    padding: 28px 0 calc(32px + env(safe-area-inset-bottom));
  }

  .footer-bar {
    gap: 18px;
    padding-top: 18px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    width: 100%;
  }

  .footer-links a {
    font-size: 0.72rem;
  }

  .footer-meta {
    align-items: flex-start;
    gap: 10px;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 13px;
    right: 13px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 60;
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(53, 39, 57, 0.08);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 236, 0.98)),
      radial-gradient(circle at top right, rgba(136, 41, 195, 0.08), transparent 36%);
    box-shadow: 0 24px 56px rgba(24, 17, 25, 0.16);
    backdrop-filter: blur(20px);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  body.nav-open .mobile-cta-bar {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
  }

  .mobile-cta-copy {
    margin: 0;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.01em;
  }

  .mobile-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-industry-bubble {
    animation: none !important;
  }

  .client-logo-track {
    animation: none !important;
  }

  .route-line::after,
  .board-line::after,
  .board-line-alt::after,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
  }
}

#contact-form {
  scroll-margin-top: 112px;
}
