:root {
  --black: #222222;
  --gray-800: #4d4d4d;
  --gray-600: #666666;
  --gray-500: #808080;
  --gray-300: #b3b3b3;
  --gray-100: #e6e6e6;
  --surface: #f9f9f9;
  --white: #ffffff;
  --blue: #0187ec;
  --blue-dark: #0169b7;
  --blue-soft: #ebf6ff;
  --orange: #ff5e00;
  --orange-soft: #feeee5;
  --green: #0eb245;
  --red: #e44e48;
  --red-border: #da2720;
  --red-soft: #fbe5e4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1440px;
  margin: 0;
  color: var(--black);
  background: var(--surface);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

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

img {
  display: block;
}

.m-page {
  overflow: hidden;
}

.m-page > section {
  position: relative;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.m-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  width: 100%;
  min-width: 1440px;
  height: 60px;
  transform: translateX(-50%);
  background: #fff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.m-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, 100%);
  height: 60px;
  margin: 0 auto;
  padding: 0 100px 0 104px;
  transition: padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.m-header__brand,
.m-header__brand img {
  width: 104px;
  height: 20px;
}

.m-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.m-header__language-picker {
  position: relative;
}

.m-header__language {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
}

.m-header__language:hover,
.m-header__language[aria-expanded="true"] {
  background: #efeeee;
}

.m-header__language img {
  width: 28px;
  height: 28px;
}

.m-header__language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: flex;
  width: 140px;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.m-header__language-menu[hidden] {
  display: none;
}

.m-header__language-menu a {
  padding: 4px 8px;
  color: var(--gray-800);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.m-header__language-menu a:hover,
.m-header__language-menu a:focus-visible {
  background: var(--surface);
}

.m-header__divider {
  width: 1px;
  height: 16px;
  background: var(--gray-100);
}

.m-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.m-button--nav {
  gap: 2px;
  height: 40px;
  padding: 8px 12px 8px 15px;
  color: #f6f6f6;
  background: var(--gray-800);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.m-button--nav img {
  width: 20px;
  height: 20px;
}

.m-header.scrolled {
  top: 16px;
  left: 50%;
  width: min(1500px, calc(100vw - 48px));
  min-width: 0;
  transform: translateX(-50%);
  background: rgba(51, 51, 51, 0.85);
  border-radius: 100px;
}

.m-header.scrolled .m-header__inner {
  width: 100%;
  padding: 0 12px 0 24px;
}

.m-header.scrolled .m-header__divider {
  background: rgba(255, 255, 255, 0.28);
}

.m-header.scrolled .m-button--nav {
  color: var(--gray-800);
  background: var(--white);
  border-radius: 100px;
}

.m-header.scrolled .m-header__language img {
  width: 22px;
  height: 22px;
}

.m-header.scrolled .m-header__language:hover,
.m-header.scrolled .m-header__language[aria-expanded="true"] {
  background: var(--gray-500);
}

.m-header.scrolled .m-button--nav img {
  width: 24px;
  height: 24px;
}

.m-badge {
  display: inline-flex;
  width: max-content;
  margin: 0;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.m-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.m-section-heading h2 {
  margin: 12px 0 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
}

.m-section-heading > p:last-child:not(.m-badge) {
  margin: 8px 0 0;
  color: var(--gray-600);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

/* Hero */
.m-hero {
  height: 1375px;
  background: var(--white);
  overflow: hidden;
}

.m-page > .m-hero {
  width: 100%;
  max-width: none;
}

.m-hero__copy {
  position: absolute;
  z-index: 2;
  top: 120px;
  left: 50%;
  display: flex;
  width: 816px;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.m-hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.m-badge--hero {
  padding: 7px 15px;
  color: var(--blue);
  background: var(--blue-soft);
}

.m-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
}

.m-hero__mobile-break {
  display: none;
}

.m-hero__description {
  margin: 0;
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.m-button--hero {
  gap: 8px;
  height: 59px;
  padding: 14px 30px 14px 26px;
  color: var(--white);
  background: var(--gray-800);
  border-radius: 100px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.m-button--hero img {
  width: 20px;
  height: 20px;
}

.m-hero__visual {
  position: absolute;
  z-index: 1;
  top: 515px;
  left: 50%;
  width: 1440px;
  height: 860px;
  transform: translateX(-50%);
  object-fit: contain;
}

.m-hero__visual-mobile,
.m-scenario__image-mobile {
  display: none;
}

/* Results */
.m-results {
  min-height: 633px;
  padding: 124px 98px;
  background: var(--surface);
  overflow: hidden;
}

.m-results__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.m-section-heading--compact h2 {
  margin-top: 12px;
}

.m-badge--results {
  padding: 5px 12px;
  color: var(--white);
  background: var(--green);
}

.m-results__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.m-results__metrics {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.m-results__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-results__metric span {
  color: var(--gray-600);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.m-results__metric strong {
  font-size: 88px;
  font-weight: 700;
  line-height: 1.4;
}

.m-results__body > p {
  margin: 0;
  color: var(--gray-600);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.m-results__mark {
  position: absolute;
  z-index: 1;
  top: 257px;
  left: calc(50% + 73px);
  width: 734px;
  height: 733px;
}

/* Problem */
.m-problem {
  height: 1260px;
  padding: 124px 100px;
  background: var(--surface);
}

.m-badge--problem {
  padding: 5px 12px;
  color: var(--white);
  background: var(--gray-800);
}

.m-expiry-card {
  display: flex;
  width: 1240px;
  height: 499px;
  margin-top: 44px;
  padding: 52px 44px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border-radius: 12px;
}

.m-expiry-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.m-expiry-row__industry {
  display: flex;
  width: 94px;
  min-width: 94px;
  height: 70px;
  margin-top: 28px;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
}

.m-expiry-row__industry img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.m-expiry-row__industry strong {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.m-expiry-row__timeline {
  display: flex;
  min-width: 0;
  flex: 1;
  gap: 4px;
}

.m-expiry-cell {
  width: 220px;
}

.m-expiry-cell > span {
  display: block;
  height: 22px;
  margin-bottom: 6px;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.m-expiry-cell > div {
  display: flex;
  height: 70px;
  padding: 12px 14px;
  flex-direction: column;
  justify-content: center;
  background: var(--blue-soft);
  border-radius: 4px;
}

.m-expiry-cell small {
  color: var(--gray-800);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.m-expiry-cell strong {
  color: var(--gray-800);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.m-expiry-cell--expired {
  min-width: 0;
  flex: 1;
}

.m-expiry-cell--expired > span {
  color: var(--red-border);
}

.m-expiry-cell--expired > div {
  padding-left: 18px;
  background: var(--red-soft);
  border-left: 4px solid var(--red-border);
  border-radius: 0 4px 4px 0;
}

.m-expiry-cell--expired strong {
  color: var(--red);
}

.m-problem__closing {
  display: flex;
  margin: 44px auto 0;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.m-problem__closing p {
  margin: 0;
  color: var(--gray-600);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.m-problem__closing strong {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
}

/* Industries */
.m-industries {
  min-height: 1716px;
  padding: 72px;
  background: var(--surface);
}

.m-industries > h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.m-segmented {
  display: flex;
  width: max-content;
  height: 52px;
  margin: 44px auto 0;
  padding: 4px;
  align-items: center;
  background: var(--gray-100);
  border-radius: 8px;
}

.m-segmented__tab {
  display: flex;
  height: 44px;
  padding: 8px 20px 8px 16px;
  align-items: center;
  gap: 12px;
  color: var(--gray-500);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.m-segmented__tab img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
}

.m-segmented__tab.is-active {
  color: var(--black);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.m-segmented__tab.is-active img {
  filter: none;
  opacity: 1;
}

.m-scenario {
  width: 1296px;
  height: auto;
  margin: 44px auto 0;
  padding: 0;
}

.m-scenario__image {
  width: 1296px;
  height: auto;
}

.m-industries__summary {
  display: grid;
  width: min(1296px, 100%);
  margin: 24px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.m-industries__summary p {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.5;
  word-break: keep-all;
}

.m-industries__summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
}

.m-industries__note {
  width: min(1296px, 100%);
  margin: 20px auto 0;
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.5;
}

html[lang="en"] .m-industries__summary p {
  font-size: 16px;
}

html[lang="en"] .m-industries__summary strong {
  font-size: 18px;
}

html[lang="en"] .m-industries__note {
  font-size: 14px;
}

/* How it works */
.m-how {
  height: 1455px;
  padding: 124px 98px;
  background: var(--surface);
}

.m-badge--how {
  padding: 5px 12px;
  color: var(--white);
  background: var(--blue);
}

.m-how-diagram {
  position: relative;
  width: 1148px;
  height: 796px;
  margin: 44px auto 0;
}

.m-system-card {
  position: absolute;
  top: 8px;
  width: 395px;
  height: 225px;
  padding: 32px 36px;
  background: var(--white);
  border-radius: 16px;
}

.m-system-card--left {
  left: 102px;
}

.m-system-card--right {
  left: 664px;
}

.m-system-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.m-system-card ul {
  display: flex;
  margin: 20px 0 0;
  padding: 0;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.m-system-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-800);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.m-system-card li img {
  width: 24px;
  height: 24px;
}

.m-how-diagram__connector {
  position: absolute;
}

.m-how-diagram__connector--data {
  top: 241px;
  left: 246px;
  width: 208px;
  height: 102px;
}

.m-how-diagram__connector--price {
  top: 241px;
  left: 683px;
  width: 218px;
  height: 102px;
  transform: scaleY(-1) rotate(180deg);
}

.m-how-diagram__label {
  position: absolute;
  z-index: 2;
  padding: 3px 8px;
  background: var(--surface);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.m-how-diagram__label--data {
  top: 272px;
  left: 294px;
  color: var(--gray-800);
}

.m-how-diagram__label--price {
  top: 272px;
  left: 723px;
  color: var(--blue);
}

.m-ai-model {
  position: absolute;
  top: 347px;
  left: 315.5px;
  display: flex;
  width: 519px;
  height: 299px;
  padding: 36px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  background: var(--blue-soft);
  border: 1px solid var(--blue);
  border-radius: 16px;
}

.m-ai-model__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.m-ai-model__logo {
  width: 120px;
  height: 23px;
}

.m-ai-model h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}

.m-ai-model__rules {
  display: flex;
  gap: 12px;
}

.m-ai-model__rules span {
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
}

.m-ai-model > p {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.m-ai-model > p img {
  width: 24px;
  height: 24px;
}

.m-how-diagram__connector--monitor {
  top: 652px;
  left: 573px;
  width: 3px;
  height: 50px;
}

.m-monitor-card {
  position: absolute;
  top: 708px;
  left: 447px;
  display: flex;
  width: 254px;
  height: 74px;
  padding: 14px 24px;
  align-items: center;
  gap: 12px;
  background: var(--gray-100);
  border-radius: 12px;
}

.m-monitor-card > img {
  width: 24px;
  height: 24px;
}

.m-monitor-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.m-monitor-card p {
  margin: 2px 0 0;
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.m-how__closing {
  margin: 44px 0 0;
  color: var(--gray-600);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

/* Capabilities */
.m-capabilities {
  height: 1744px;
  padding: 124px 98px;
  background: var(--surface);
}

.m-badge--capabilities {
  padding: 5px 12px;
  color: var(--white);
  background: var(--orange);
}

.m-section-heading--capabilities {
  height: 179px;
}

.m-capability-list {
  display: flex;
  margin-top: 44px;
  flex-direction: column;
  gap: 20px;
}

.m-capability-card {
  display: flex;
  width: 1244px;
  padding: 44px;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 12px;
}

.m-capability-card:nth-child(1) {
  height: 435px;
}

.m-capability-card:nth-child(2) {
  height: 397px;
}

.m-capability-card:nth-child(3) {
  height: 401px;
}

.m-capability-card__copy {
  align-self: stretch;
}

.m-capability-card__eyebrow {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.m-capability-card__eyebrow span {
  font-size: 24px;
}

.m-capability-card__copy h3 {
  margin: 52px 0 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}

.m-capability-card__copy > p:last-child {
  margin: 16px 0 0;
  color: var(--gray-800);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.m-capability-visual {
  width: 511px;
  padding: 32px;
  background: #f6f6f6;
  border-radius: 12px;
}

.m-capability-card:nth-child(1) .m-capability-visual {
  height: 347px;
}

.m-capability-card:nth-child(2) .m-capability-visual {
  height: 309px;
}

.m-capability-card:nth-child(3) .m-capability-visual {
  height: 313px;
}

.m-capability-visual h4 {
  margin: 0;
  color: var(--gray-800);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.m-demand-visual__header,
.m-demand-visual__row {
  display: grid;
  grid-template-columns: 72px 95px 1fr;
  align-items: center;
}

.m-demand-visual__header {
  margin-top: 32px;
  color: var(--gray-500);
  font-size: 15px;
  font-weight: 500;
}

.m-demand-visual__row {
  height: 58px;
  color: var(--gray-800);
  font-size: 17px;
}

.m-demand-visual__row > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.m-demand-visual__row i {
  display: block;
  width: var(--bar);
  min-width: 35px;
  height: 12px;
  background: var(--orange);
  border-radius: 100px;
}

.m-demand-visual__row b {
  color: var(--gray-600);
  font-size: 15px;
}

.m-capability-visual__footer {
  margin-top: 18px;
  padding-top: 18px;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-100);
  font-size: 16px;
  font-weight: 500;
}

.m-policy-visual__range {
  margin-top: 34px;
  text-align: center;
}

.m-policy-visual__range > span {
  color: var(--orange);
  font-size: 18px;
  font-weight: 600;
}

.m-policy-visual__track {
  position: relative;
  height: 38px;
  margin-top: 18px;
  background: #dfe3e8;
  border-radius: 8px;
}

.m-policy-visual__track i {
  position: absolute;
  top: 0;
  left: 104px;
  display: flex;
  width: 238px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: var(--orange-soft);
  border-right: 4px solid var(--orange);
  border-left: 4px solid var(--orange);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.m-policy-visual__ends {
  display: flex;
  width: 280px;
  margin: 10px auto 0;
  justify-content: space-between;
  color: var(--gray-800);
  font-size: 17px;
}

.m-policy-visual__chips {
  display: flex;
  margin-top: 24px;
  gap: 12px;
}

.m-policy-visual__chips span {
  padding: 10px 14px;
  background: var(--white);
  border-radius: 7px;
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 500;
}

.m-optimize-visual__candidates {
  display: grid;
  margin-top: 27px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.m-optimize-visual__candidates > div {
  display: flex;
  height: 125px;
  padding: 18px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
}

.m-optimize-visual__candidates span {
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
}

.m-optimize-visual__candidates strong {
  font-size: 20px;
  font-weight: 700;
}

.m-optimize-visual__candidates > .is-selected {
  background: var(--orange-soft);
  border-color: var(--orange);
}

.m-optimize-visual > p {
  display: flex;
  margin: 20px 0 0;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
}

.m-optimize-visual > p img {
  width: 24px;
  height: 24px;
}

/* FAQ */
.m-faq {
  min-height: 1308px;
  height: auto;
  padding: 124px 98px 200px;
  background: var(--surface);
}

.m-faq > h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.m-faq__list {
  width: 778px;
  margin: 44px auto 0;
}

.m-faq__item {
  padding: 0;
  border-bottom: 1px solid var(--gray-100);
}

.m-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  list-style: none;
}

.m-faq__item summary::-webkit-details-marker {
  display: none;
}

.m-faq__item summary img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.m-faq__item > p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--gray-800);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

/* Closing CTA */
.m-closing {
  height: 373px;
  padding-top: 15px;
  padding-bottom: 150px;
  background: var(--surface);
}

.m-closing__panel {
  display: flex;
  width: 1200px;
  height: 208px;
  margin: 0 auto;
  padding: 62px;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-800);
  border-radius: 20px;
}

.m-closing__panel h2 {
  margin: 0;
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.m-button--closing {
  height: 63px;
  padding: 16px 28px;
  color: var(--gray-800);
  background: var(--surface);
  border-radius: 100px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.m-button--nav:focus-visible,
.m-button--hero:focus-visible,
.m-button--closing:focus-visible,
.m-header__language:focus-visible,
.m-segmented__tab:focus-visible,
.m-faq__item summary:focus-visible {
  outline: 3px solid rgba(1, 135, 236, 0.35);
  outline-offset: 3px;
}

/* English typography and copy-fit adjustments */
/* Keep Korean words from breaking mid-word; let over-long tokens wrap only when needed. */
.m-hero__description,
.m-section-heading > p:not(.m-badge),
.m-results__body p,
.m-problem__closing p,
.m-problem__closing strong,
.m-how__closing,
.m-capability-card__copy p {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

html[lang="en"] .m-hero h1,
html[lang="en"] .m-section-heading h2,
html[lang="en"] .m-industries > h2,
html[lang="en"] .m-problem__closing strong,
html[lang="en"] .m-ai-model h3,
html[lang="en"] .m-capability-card__copy h3,
html[lang="en"] .m-faq > h2,
html[lang="en"] .m-closing__panel h2 {
  font-family: "Plus Jakarta Sans", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[lang="en"] .m-hero h1,
html[lang="en"] .m-section-heading h2,
html[lang="en"] .m-industries > h2,
html[lang="en"] .m-ai-model h3,
html[lang="en"] .m-capability-card__copy h3,
html[lang="en"] .m-faq > h2,
html[lang="en"] .m-closing__panel h2 {
  font-weight: 800;
}

html[lang="en"] .m-problem__closing strong {
  font-weight: 700;
}

html[lang="en"] .m-button--nav,
html[lang="en"] .m-badge {
  font-size: 14px;
}

html[lang="en"] .m-section-heading > p:last-child:not(.m-badge),
html[lang="en"] .m-results__body > p,
html[lang="en"] .m-problem__closing p,
html[lang="en"] .m-how__closing,
html[lang="en"] .m-capability-card__copy > p:last-child {
  font-size: 18px;
}

html[lang="en"] .m-hero__description {
  font-size: 14px;
}

html[lang="en"] .m-button--hero,
html[lang="en"] .m-button--closing {
  font-size: 20px;
}

html[lang="en"] .m-results__metric span {
  font-size: 22px;
}

html[lang="en"] .m-expiry-row__industry {
  width: 150px;
  min-width: 150px;
}

html[lang="en"] .m-expiry-row__industry strong {
  font-size: 20px;
}

html[lang="en"] .m-expiry-cell > span,
html[lang="en"] .m-expiry-cell small {
  font-size: 13px;
}

html[lang="en"] .m-expiry-cell strong {
  font-size: 16px;
}

html[lang="en"] .m-expiry-cell small,
html[lang="en"] .m-expiry-cell strong,
html[lang="en"] .m-system-card li,
html[lang="en"] .m-ai-model__rules span {
  white-space: nowrap;
}

html[lang="en"] .m-segmented__tab {
  font-size: 18px;
}

html[lang="en"] .m-system-card h3 {
  font-size: 22px;
}

html[lang="en"] .m-system-card li,
html[lang="en"] .m-how-diagram__label,
html[lang="en"] .m-ai-model__rules span,
html[lang="en"] .m-ai-model > p {
  font-size: 16px;
}

html[lang="en"] .m-ai-model__rules span {
  flex: 0 0 auto;
  padding-right: 12px;
  padding-left: 12px;
}

html[lang="en"] .m-ai-model__rules {
  flex-wrap: nowrap;
}

html[lang="en"] .m-monitor-card {
  left: 384px;
  width: 380px;
}

html[lang="en"] .m-monitor-card h3 {
  font-size: 18px;
}

html[lang="en"] .m-monitor-card p {
  font-size: 14px;
}

html[lang="en"] .m-capability-card__eyebrow {
  font-size: 18px;
}

html[lang="en"] .m-capability-card__eyebrow span {
  font-size: 22px;
}

html[lang="en"] .m-capability-visual h4 {
  font-size: 18px;
}

html[lang="en"] .m-demand-visual__header,
html[lang="en"] .m-demand-visual__row b,
html[lang="en"] .m-capability-visual__footer,
html[lang="en"] .m-policy-visual__track i,
html[lang="en"] .m-policy-visual__chips span,
html[lang="en"] .m-optimize-visual > p,
html[lang="en"] .m-faq__item summary,
html[lang="en"] .m-faq__item > p {
  font-size: 14px;
}

html[lang="en"] .m-demand-visual__row,
html[lang="en"] .m-policy-visual__range > span,
html[lang="en"] .m-policy-visual__ends {
  font-size: 16px;
}

/* English "Weekday"/"Weekend" need a wider Day column so they don't touch the price;
   Day+Price total is unchanged so the bar column keeps its position. */
html[lang="en"] .m-demand-visual__header,
html[lang="en"] .m-demand-visual__row {
  grid-template-columns: 84px 83px 1fr;
}

html[lang="en"] .m-optimize-visual__candidates span {
  font-size: 13px;
}

html[lang="en"] .m-optimize-visual__candidates strong {
  font-size: 18px;
}

/* Mobile: the two large raster illustrations retain their space until mobile assets are ready. */
@media (max-width: 767px) {
  body {
    min-width: 320px;
  }

  .m-page > section {
    width: 100%;
  }

  .m-header,
  .m-header.scrolled {
    top: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    height: 60px;
    transform: none;
    background: #fff;
    border-radius: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .m-header__inner,
  .m-header.scrolled .m-header__inner {
    width: 100%;
    height: 60px;
    padding: 0 20px;
  }

  .m-header__brand,
  .m-header__brand img {
    width: 94px;
    height: auto;
  }

  .m-header__actions {
    gap: 8px;
  }

  .m-header__divider,
  .m-button--nav img {
    display: none;
  }

  .m-header__language img,
  .m-header.scrolled .m-header__language img {
    width: 24px;
    height: 24px;
  }

  .m-button--nav,
  .m-header.scrolled .m-button--nav,
  html[lang="en"] .m-button--nav {
    height: 36px;
    padding: 7px 11px;
    color: #f6f6f6;
    background: var(--gray-800);
    border-radius: 9px;
    font-size: 13px;
    line-height: 1.4;
  }

  .m-badge,
  html[lang="en"] .m-badge {
    font-size: 12px;
  }

  .m-section-heading h2,
  .m-industries > h2,
  .m-faq > h2 {
    font-size: 28px;
    line-height: 1.35;
    word-break: keep-all;
  }

  .m-section-heading > p:last-child:not(.m-badge),
  html[lang="en"] .m-section-heading > p:last-child:not(.m-badge) {
    font-size: 15px;
    line-height: 1.5;
  }

  .m-hero {
    display: flex;
    height: auto;
    min-height: 0;
    padding: 112px 20px 0;
    flex-direction: column;
    align-items: center;
  }

  .m-hero__copy {
    position: static;
    width: 100%;
    transform: none;
    gap: 28px;
  }

  .m-hero__text {
    width: 100%;
    gap: 18px;
  }

  .m-badge--hero {
    max-width: 100%;
    padding: 7px 10px;
    text-align: center;
  }

  .m-hero h1 {
    font-size: clamp(28px, 7.8vw, 36px);
    line-height: 1.32;
    text-wrap: balance;
    word-break: keep-all;
  }

  .m-hero__mobile-break {
    display: inline;
  }

  /* English hero: keep two balanced lines instead of four short ones. */
  html[lang="en"] .m-hero__mobile-break {
    display: none;
  }

  html[lang="en"] .m-hero h1 {
    font-size: clamp(19px, 6.2vw, 28px);
  }

  .m-hero__description,
  html[lang="en"] .m-hero__description {
    font-size: 14px;
    line-height: 1.5;
    text-wrap: pretty;
  }

  .m-button--hero,
  html[lang="en"] .m-button--hero {
    height: 48px;
    padding: 10px 22px;
    font-size: 16px;
  }

  .m-hero__visual,
  .m-scenario__image {
    display: none;
  }

  .m-hero__visual-mobile {
    display: block;
    width: calc(100% + 40px);
    height: auto;
    margin: 48px -20px 0;
  }

  .m-results {
    height: auto;
    min-height: 0;
    padding: 80px 20px;
  }

  .m-results__content {
    gap: 32px;
  }

  .m-results__body {
    width: 100%;
    gap: 24px;
  }

  .m-results__metrics {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }

  .m-results__metric {
    min-width: 0;
    flex: 1;
  }

  .m-results__metric span,
  html[lang="en"] .m-results__metric span {
    font-size: 12px;
    text-align: center;
  }

  .m-results__metric strong {
    font-size: clamp(23px, 7vw, 31px);
    white-space: nowrap;
  }

  .m-results__body > p,
  html[lang="en"] .m-results__body > p {
    font-size: 14px;
    line-height: 1.5;
  }

  .m-results__mark {
    display: none;
  }

  .m-problem {
    height: auto;
    padding: 80px 20px;
  }

  .m-expiry-card {
    width: 100%;
    height: auto;
    margin-top: 32px;
    padding: 20px;
    gap: 24px;
  }

  .m-expiry-row {
    display: block;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
  }

  .m-expiry-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .m-expiry-row__industry,
  html[lang="en"] .m-expiry-row__industry {
    width: auto;
    min-width: 0;
    height: auto;
    margin: 0 0 16px;
  }

  .m-expiry-row__industry img {
    width: 24px;
    height: 24px;
  }

  .m-expiry-row__industry strong,
  html[lang="en"] .m-expiry-row__industry strong {
    font-size: 17px;
  }

  .m-expiry-row__timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 8px;
  }

  .m-expiry-cell,
  .m-expiry-cell--expired {
    width: auto;
    min-width: 0;
  }

  .m-expiry-cell > span,
  html[lang="en"] .m-expiry-cell > span {
    height: auto;
    min-height: 18px;
    font-size: 12px;
  }

  .m-expiry-cell > div {
    height: 70px;
    padding: 8px 10px;
  }

  .m-expiry-cell--expired > div {
    padding-left: 10px;
  }

  .m-expiry-cell small,
  html[lang="en"] .m-expiry-cell small {
    font-size: 11px;
    white-space: normal;
  }

  .m-expiry-cell strong,
  html[lang="en"] .m-expiry-cell strong {
    font-size: 14px;
    white-space: normal;
  }

  .m-problem__closing {
    margin-top: 32px;
    gap: 20px;
  }

  .m-problem__closing p,
  html[lang="en"] .m-problem__closing p {
    font-size: 14px;
    line-height: 1.55;
    text-wrap: pretty;
  }

  .m-problem__closing strong {
    font-size: 20px;
    line-height: 1.45;
    text-wrap: balance;
  }

  .m-industries {
    height: auto;
    min-height: 0;
    padding: 80px 20px;
  }

  .m-segmented {
    width: 100%;
    height: 48px;
    margin-top: 32px;
  }

  .m-segmented__tab,
  html[lang="en"] .m-segmented__tab {
    min-width: 0;
    height: 40px;
    padding: 7px 5px;
    flex: 1;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
  }

  .m-segmented__tab img {
    width: 20px;
    height: 20px;
  }

  .m-scenario {
    width: 100%;
    margin: 24px auto 0;
  }

  .m-scenario__image-mobile {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .m-industries__summary {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .m-industries__summary p,
  html[lang="en"] .m-industries__summary p {
    padding-top: 12px;
    font-size: 14px;
  }

  .m-industries__summary strong,
  html[lang="en"] .m-industries__summary strong {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .m-industries__note,
  html[lang="en"] .m-industries__note {
    margin-top: 20px;
    font-size: 12px;
  }

  .m-how {
    height: auto;
    padding: 80px 20px;
  }

  .m-how-diagram {
    display: flex;
    width: 100%;
    height: auto;
    margin-top: 32px;
    flex-direction: column;
    gap: 14px;
  }

  .m-system-card,
  .m-ai-model,
  .m-monitor-card,
  html[lang="en"] .m-monitor-card {
    position: static;
    width: 100%;
    height: auto;
    padding: 24px;
  }

  .m-system-card--left { order: 1; }
  .m-how-diagram__label--data { order: 2; }
  .m-ai-model { order: 3; }
  .m-how-diagram__label--price { order: 4; }
  .m-system-card--right { order: 5; }
  .m-monitor-card { order: 6; }

  .m-system-card h3,
  html[lang="en"] .m-system-card h3 {
    font-size: 19px;
  }

  .m-system-card ul {
    margin-top: 16px;
    gap: 10px;
  }

  .m-system-card li,
  html[lang="en"] .m-system-card li {
    font-size: 14px;
    white-space: normal;
  }

  .m-system-card li img {
    width: 20px;
    height: 20px;
  }

  .m-how-diagram__connector {
    display: none;
  }

  .m-how-diagram__label,
  html[lang="en"] .m-how-diagram__label {
    position: static;
    align-self: center;
    padding: 0;
    background: transparent;
    font-size: 13px;
    text-align: center;
  }

  .m-how-diagram__label::before {
    display: block;
    margin-bottom: 4px;
    content: "↓";
    font-size: 22px;
    line-height: 1;
  }

  .m-ai-model {
    gap: 20px;
  }

  .m-ai-model h3 { font-size: 26px; }

  .m-ai-model__rules,
  html[lang="en"] .m-ai-model__rules {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }

  .m-ai-model__rules span,
  html[lang="en"] .m-ai-model__rules span {
    padding: 9px 10px;
    flex: 0 1 auto;
    font-size: 13px;
    white-space: normal;
  }

  .m-ai-model > p,
  html[lang="en"] .m-ai-model > p {
    font-size: 13px;
    white-space: normal;
  }

  .m-monitor-card {
    align-items: flex-start;
  }

  .m-monitor-card h3,
  html[lang="en"] .m-monitor-card h3 {
    font-size: 17px;
    white-space: normal;
  }

  .m-monitor-card p,
  html[lang="en"] .m-monitor-card p {
    font-size: 13px;
    white-space: normal;
  }

  .m-how__closing,
  html[lang="en"] .m-how__closing {
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.55;
  }

  .m-capabilities {
    height: auto;
    padding: 80px 20px;
  }

  .m-section-heading--capabilities {
    height: auto;
  }

  .m-capability-list {
    margin-top: 32px;
    gap: 16px;
  }

  .m-capability-card,
  .m-capability-card:nth-child(n) {
    width: 100%;
    height: auto;
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .m-capability-card__eyebrow,
  html[lang="en"] .m-capability-card__eyebrow {
    font-size: 15px;
  }

  .m-capability-card__eyebrow span,
  html[lang="en"] .m-capability-card__eyebrow span {
    font-size: 19px;
  }

  .m-capability-card__copy h3 {
    margin-top: 22px;
    font-size: 24px;
    line-height: 1.4;
  }

  .m-capability-card__copy > p:last-child,
  html[lang="en"] .m-capability-card__copy > p:last-child {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .m-capability-visual,
  .m-capability-card:nth-child(n) .m-capability-visual {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 20px;
  }

  .m-capability-visual h4,
  html[lang="en"] .m-capability-visual h4 {
    font-size: 16px;
  }

  .m-demand-visual__header,
  .m-demand-visual__row {
    grid-template-columns: 52px 76px minmax(0, 1fr);
  }

  /* English labels ("Weekday"/"Weekend") need a wider Day column so they don't touch the price. */
  html[lang="en"] .m-demand-visual__header,
  html[lang="en"] .m-demand-visual__row {
    grid-template-columns: 66px 52px minmax(0, 1fr);
  }

  .m-demand-visual__header {
    margin-top: 24px;
    font-size: 11px;
  }

  .m-demand-visual__row,
  html[lang="en"] .m-demand-visual__row {
    height: 40px;
    font-size: 12px;
  }

  .m-demand-visual__row > div { gap: 5px; }
  .m-demand-visual__row i { min-width: 12px; height: 8px; }

  .m-demand-visual__row b,
  html[lang="en"] .m-demand-visual__row b {
    font-size: 11px;
  }

  .m-capability-visual__footer,
  html[lang="en"] .m-capability-visual__footer {
    margin-top: 10px;
    padding-top: 12px;
    font-size: 12px;
  }

  .m-policy-visual__range { margin-top: 24px; }
  .m-policy-visual__range > span,
  html[lang="en"] .m-policy-visual__range > span { font-size: 14px; }
  .m-policy-visual__track { height: 34px; margin-top: 14px; }

  .m-policy-visual__track i,
  html[lang="en"] .m-policy-visual__track i {
    left: 20%;
    width: 60%;
    height: 34px;
    font-size: 11px;
  }

  .m-policy-visual__ends,
  html[lang="en"] .m-policy-visual__ends {
    width: 70%;
    font-size: 13px;
  }

  .m-policy-visual__chips { margin-top: 20px; gap: 8px; flex-wrap: wrap; }
  .m-policy-visual__chips span,
  html[lang="en"] .m-policy-visual__chips span { padding: 8px 10px; font-size: 12px; }

  .m-optimize-visual__candidates { margin-top: 22px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
  .m-optimize-visual__candidates > div { min-width: 0; height: 94px; padding: 10px 6px; }
  .m-optimize-visual__candidates span,
  html[lang="en"] .m-optimize-visual__candidates span { font-size: 11px; overflow-wrap: anywhere; }
  .m-optimize-visual__candidates strong,
  html[lang="en"] .m-optimize-visual__candidates strong { font-size: 16px; white-space: nowrap; }
  .m-optimize-visual > p,
  html[lang="en"] .m-optimize-visual > p { font-size: 12px; line-height: 1.4; }

  .m-faq {
    min-height: 0;
    padding: 80px 20px 96px;
  }

  .m-faq__list { width: 100%; margin-top: 28px; }
  .m-faq__item summary,
  html[lang="en"] .m-faq__item summary {
    min-height: 64px;
    padding: 20px 0;
    font-size: 15px;
  }

  .m-faq__item > p,
  html[lang="en"] .m-faq__item > p {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.55;
  }

  .m-closing {
    height: auto;
    padding: 0 20px 80px;
  }

  .m-closing__panel {
    width: 100%;
    height: auto;
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .m-closing__panel h2 { font-size: 24px; }
  .m-button--closing,
  html[lang="en"] .m-button--closing {
    width: 100%;
    height: 48px;
    padding: 10px 18px;
    font-size: 16px;
  }
}
