:root {
  --olive: #586b3a;
  --olive-deep: #354322;
  --olive-soft: #eef3e8;
  --black: #050505;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --surface: #f7f8fa;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(17, 24, 39, 0.12);
  --font-display-latin: "Toss Product Sans", "Google Sans", "SF Pro Display", "SF Pro Text";
  --font-text-latin: "Toss Product Sans", "Google Sans Text", "Google Sans", "SF Pro Text";
  --font-korean: "Toss Product Sans", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic";
  --font-fallback: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --section-x: clamp(24px, 7vw, 150px);
  --section-y: 120px;
  --section-gap: clamp(42px, 8vw, 120px);
  --section-eyebrow-gap: 24px;
  --section-title-weight: 600;
  --section-title-line-height: 1.18;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-text-latin), var(--font-korean), var(--font-fallback);
  font-optical-sizing: auto;
  font-weight: 600;
}

body.modal-open {
  overflow: hidden;
}

html[lang="ko"] body {
  font-family: var(--font-korean), var(--font-text-latin), var(--font-fallback);
  word-break: keep-all;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  padding: 0 clamp(24px, 5vw, 80px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 82px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #4b5563;
  font-size: 16px;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--olive);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 0;
  background: transparent;
  color: #a5adb8;
  cursor: pointer;
}

.language-toggle span:not(.divider).active {
  color: #111827;
}

.divider {
  width: 1px;
  height: 17px;
  background: #d1d5db;
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--white);
  font-size: 14px;
}

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

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

main section {
  scroll-margin-top: 88px;
}

.desktop-break {
  display: inline;
}

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1.08fr);
  gap: 50px;
  align-items: center;
  padding: 58px var(--section-x) 72px;
}

.eyebrow {
  margin: 0 0 var(--section-eyebrow-gap);
  color: var(--olive);
  font-size: 24px;
  font-weight: 800;
}

.statement h2,
.insight-section h2,
.security-section h2,
.product-feature h2,
.feature-copy h2,
.business h2,
.market-position h2,
.team h2,
.cta h2,
.operating-design h2 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display-latin), var(--font-korean), var(--font-fallback);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line-height);
}

.hero h1 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display-latin), var(--font-korean), var(--font-fallback);
  font-weight: 800;
  line-height: var(--section-title-line-height);
}

html[lang="ko"] .hero h1,
html[lang="ko"] .statement h2,
html[lang="ko"] .insight-section h2,
html[lang="ko"] .security-section h2,
html[lang="ko"] .product-feature h2,
html[lang="ko"] .feature-copy h2,
html[lang="ko"] .business h2,
html[lang="ko"] .market-position h2,
html[lang="ko"] .team h2,
html[lang="ko"] .cta h2,
html[lang="ko"] .operating-design h2 {
  font-family: var(--font-korean), var(--font-display-latin), var(--font-fallback);
}

.hero h1 {
  max-width: 760px;
  font-size: 86px;
}

html[lang="ko"] .hero h1 {
  max-width: 1040px;
  font-size: clamp(38px, 3vw, 58px);
  line-height: 1.16;
  white-space: nowrap;
}

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: #5f6b7a;
  font-size: 22px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--black);
  color: var(--white);
}

.button.ghost {
  background: var(--olive-soft);
  color: var(--olive-deep);
}

.hero-visual {
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dashboard {
  width: min(100%, 760px);
  overflow: hidden;
  border: 1px solid #dfe5ec;
  border-radius: 30px;
  background: #f9fafb;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.13);
}

.dashboard-browser {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 18px;
  border-bottom: 1px solid #e3e9f0;
  background: #f8fafc;
}

.browser-dots {
  display: inline-flex;
  gap: 9px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dde3ea;
}

.browser-url {
  min-width: 0;
  padding: 10px 18px;
  overflow: hidden;
  border: 1px solid #dbe2ea;
  border-radius: 11px;
  background: var(--white);
  color: #7a8797;
  font-size: 16px;
  line-height: 1.1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-stage {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  border-bottom: 1px solid #e3e9f0;
  background: var(--white);
}

.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 24px 10px 24px 18px;
  border-right: 1px solid #edf1f5;
  background: #fbfcfd;
}

.dashboard-menu > strong {
  margin: 0 0 6px 10px;
  color: #8a95a4;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.menu-item {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 11px;
  color: #748091;
}

.menu-item span {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: #e5eaf0;
}

.menu-item b {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.menu-item em {
  color: #9aa4b2;
  font-style: normal;
  font-size: 12px;
}

.menu-item.active {
  background: var(--olive-soft);
  color: var(--olive-deep);
}

.menu-item.active span {
  background: var(--olive);
}

.dashboard-content {
  min-width: 0;
  padding: 24px 20px 22px;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.dashboard-kpis article,
.dashboard-panel {
  border: 1px solid #dfe5ec;
  border-radius: 18px;
  background: #fbfcfd;
}

.dashboard-kpis article {
  min-height: 108px;
  padding: 18px 16px;
}

.dashboard-kpis span,
.dashboard-panel header span,
.settlement-table b {
  color: #8a95a4;
}

.dashboard-kpis span {
  display: block;
  font-size: 11px;
  line-height: 1.25;
}

.dashboard-kpis strong {
  display: block;
  margin-top: 14px;
  color: #111827;
  font-size: 20px;
  line-height: 1.1;
}

.dashboard-kpis em {
  display: block;
  margin-top: 12px;
  color: #06a66b;
  font-style: normal;
  font-size: 13px;
}

.dashboard-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.94fr);
  gap: 14px;
  margin-top: 14px;
}

.dashboard-panel {
  min-height: 196px;
  padding: 18px 18px 16px;
}

.dashboard-panel header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.dashboard-panel h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.dashboard-panel header span {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.settlement-table {
  display: grid;
  gap: 0;
}

.settlement-table > div {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.72fr;
  align-items: center;
  min-height: 34px;
  border-bottom: 1px solid #e9eef4;
}

.settlement-table > div:last-child {
  border-bottom: 0;
}

.settlement-table b,
.settlement-table strong,
.settlement-table span {
  min-width: 0;
  font-size: 13px;
}

.settlement-table strong {
  color: #1f2937;
}

.settlement-table span {
  color: #536071;
  text-align: right;
}

.cash-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 11px;
  height: 98px;
  padding: 8px 10px 0;
}

.cash-bars span {
  display: block;
  height: var(--bar);
  min-height: 26px;
  border-radius: 8px 8px 0 0;
  background: var(--olive);
}

.cash-bars .future {
  background: #dfe4eb;
}

.cash-labels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 10px 10px 0;
  color: #8a95a4;
  font-size: 12px;
  text-align: center;
}

.screen-shell {
  width: min(100%, 510px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fbfbfc;
  box-shadow: var(--shadow);
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 4px 20px;
  color: #4b5563;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 8px rgba(88, 107, 58, 0.12);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.metric-strip div,
.board-grid div,
.command-item,
.workflow-line {
  background: var(--white);
  border: 1px solid var(--line);
}

.metric-strip div {
  min-height: 116px;
  padding: 16px;
  border-radius: 20px;
}

.metric-strip span,
.board-grid span,
.workflow-line p,
.command-item p,
.signal-row p {
  color: var(--muted);
}

.metric-strip span,
.board-grid span {
  display: block;
  font-size: 13px;
}

.metric-strip strong {
  display: block;
  margin-top: 12px;
  font-size: 25px;
  line-height: 1.05;
}

.metric-strip em {
  display: inline-block;
  margin-top: 12px;
  color: var(--olive);
  font-style: normal;
  font-size: 13px;
}

.metric-strip em.neutral {
  color: #4b5563;
}

.signal-list {
  display: grid;
  gap: 10px;
}

.signal-row {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 14px;
  min-height: 84px;
  padding: 16px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.signal-row > span {
  width: 8px;
  border-radius: 999px;
  background: #d1d5db;
}

.signal-row.strong > span {
  background: var(--olive);
}

.signal-row strong {
  font-size: 16px;
}

.signal-row p {
  margin: 7px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.statement {
  display: grid;
  place-items: center;
  min-height: 54vh;
  padding: var(--section-y) 24px;
  text-align: center;
}

.statement h2 {
  max-width: 980px;
  font-size: 62px;
}

.statement p {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.55;
}

.insight-section,
.market-position {
  padding: var(--section-y) var(--section-x);
}

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

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

.section-heading h2,
.market-position h2 {
  max-width: 900px;
  font-size: 64px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
}

.problem-grid,
.method-grid,
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
}

.commerce-chaos {
  display: grid;
  grid-template-columns: minmax(0, 1180px);
  justify-content: center;
  align-items: stretch;
  margin: 0 0 42px;
  padding: 28px;
  border: 1px solid #dfe5ec;
  border-radius: 28px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.06);
}

.commerce-map {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 420px;
  aspect-ratio: 900 / 420;
  overflow: hidden;
  border: 1px solid #e7ecf2;
  border-radius: 24px;
  background:
    radial-gradient(circle at 74% 48%, rgba(17, 24, 39, 0.07), transparent 27%),
    linear-gradient(90deg, rgba(226, 232, 240, 0.34) 0 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  background-size: auto, 28px 28px, auto;
}

.commerce-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.commerce-lines path {
  fill: none;
  stroke: #9aa6b6;
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  marker-end: url("#settlement-arrow");
  opacity: 0.30;
}

.commerce-lines path:nth-of-type(2n) {
  stroke: #b3bdca;
}

.commerce-lines path:nth-of-type(4n + 1) {
  stroke: #8693a4;
}

.commerce-lines marker path {
  fill: #8d98a6;
  stroke: none;
  opacity: 0.42;
}

.brand-node,
.settlement-issue,
.conflict-core,
.brand-more {
  position: absolute;
  left: var(--left);
  top: var(--top);
  width: var(--width);
  height: var(--height);
}

.brand-node {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid #dfe5ec;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
}

.brand-node img {
  display: block;
  max-width: 112px;
  max-height: 25px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.08);
  opacity: 0.86;
}

.brand-shopify img,
.brand-shopee img,
.brand-tiktok img,
.brand-paypal img {
  width: 22px;
  height: 22px;
}

.brand-smartstore img {
  width: 42px;
  height: auto;
  max-width: 42px;
}

.brand-node span {
  color: #111827;
  filter: grayscale(1);
  font-family: var(--font-display-latin), var(--font-fallback);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-more {
  z-index: 2;
  display: grid;
  place-items: center;
  color: #a4adba;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
}

.brand-cafe24 img,
.brand-smartstore img,
.brand-coupang img,
.brand-amazon img,
.brand-qoo10 img {
  max-width: 118px;
}

.settlement-issue {
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 8px 16px;
  border: 1px solid #d5dde8;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.96);
  color: #667085;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.conflict-core {
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 10px 20px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.94);
  color: var(--white);
  text-align: center;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.18);
}

.conflict-core span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 17px;
  font-weight: 800;
}

.conflict-core strong {
  display: block;
  font-size: 17px;
  line-height: 1.28;
}

.problem-grid article,
.method-grid article,
.deliverable-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.method-grid article,
.deliverable-grid article {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
}

.method-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.method-grid p {
  max-width: 33ch;
}

.problem-grid span,
.method-grid span,
.deliverable-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--olive-soft);
  color: var(--olive-deep);
  font-size: 14px;
  font-weight: 800;
}

.problem-grid h3,
.method-grid h3,
.deliverable-grid h3 {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.22;
}

.problem-grid p,
.method-grid p,
.deliverable-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.deliverable-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.deliverable-tabs button {
  min-height: 64px;
  padding: 0 20px;
  border: 1px solid #dfe5ec;
  border-radius: 18px;
  background: #ffffff;
  color: #536071;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.deliverable-tabs button:hover {
  border-color: rgba(88, 107, 58, 0.38);
  background: #fbfcfa;
}

.deliverable-tabs button.active {
  border-color: var(--olive);
  background: var(--olive-soft);
  color: var(--olive-deep);
  box-shadow: 0 12px 30px rgba(88, 107, 58, 0.10);
}

.deliverable-stage {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, #fbfcfa 0%, #ffffff 100%);
  box-shadow: var(--shadow);
}

.deliverable-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: 34px;
  min-height: 500px;
  padding: 38px;
  align-items: stretch;
}

.deliverable-panel[hidden] {
  display: none;
}

.deliverable-panel > .feature-copy {
  align-self: center;
}

.deliverable-panel > .feature-copy h2 {
  max-width: 620px;
  font-size: 54px;
}

.deliverable-panel > .feature-copy p:not(.eyebrow) {
  max-width: 600px;
  font-size: 20px;
}

.deliverable-panel > .data-board,
.deliverable-panel > .mini-product {
  align-self: center;
  box-shadow: none;
}

.deliverable-panel > .data-board .board-grid div {
  min-height: 118px;
}

.deliverable-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deliverable-copy h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.deliverable-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.output-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.output-list li {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid #e5ebf1;
  border-radius: 16px;
  background: #ffffff;
  color: #374151;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.output-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--olive);
}

.deliverable-preview {
  min-height: 100%;
  padding: 26px;
  border: 1px solid #e0e6ee;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 14%, rgba(88, 107, 58, 0.10), transparent 26%),
    #f8fafc;
}

.preview-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.preview-toolbar span,
.preview-toolbar strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #ffffff;
  color: #536071;
  font-size: 13px;
  font-weight: 800;
}

.preview-toolbar strong {
  background: var(--olive);
  color: #ffffff;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-metrics div,
.decision-grid div {
  min-height: 128px;
  padding: 18px;
  border: 1px solid #e1e7ef;
  border-radius: 20px;
  background: #ffffff;
}

.preview-metrics span,
.decision-grid span {
  display: block;
  color: #7b8493;
  font-size: 13px;
  font-weight: 800;
}

.preview-metrics strong,
.decision-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.preview-metrics em {
  display: inline-flex;
  margin-top: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--olive-soft);
  color: var(--olive-deep);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.preview-table {
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid #e1e7ef;
  border-radius: 20px;
  background: #ffffff;
}

.preview-table div {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid #edf1f5;
}

.preview-table div:last-child {
  border-bottom: 0;
}

.preview-table b {
  color: #7b8493;
  font-size: 13px;
}

.preview-table span {
  color: #374151;
  font-size: 16px;
  font-weight: 800;
}

.preview-table span:not(:first-child) {
  text-align: right;
}

.decision-card {
  padding: 28px;
  border: 1px solid rgba(88, 107, 58, 0.20);
  border-radius: 24px;
  background: #ffffff;
}

.decision-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--olive-soft);
  color: var(--olive-deep);
  font-size: 13px;
  font-weight: 800;
}

.decision-card strong {
  display: block;
  margin-top: 24px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.18;
}

.decision-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.automation-preview {
  display: grid;
  gap: 16px;
  align-content: center;
}

.automation-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  padding: 24px;
  border: 1px solid #e1e7ef;
  border-radius: 22px;
  background: #ffffff;
}

.automation-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 44px;
  bottom: -18px;
  width: 2px;
  height: 18px;
  background: #d6dec9;
}

.automation-step span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--olive);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.automation-step strong {
  color: var(--ink);
  font-size: 23px;
}

.automation-step p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.method-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9faf8 100%);
}

.why-olivo-stack {
  padding: var(--section-y) var(--section-x);
  background: linear-gradient(180deg, #ffffff 0%, #f9faf8 48%, #ffffff 100%);
}

.why-olivo-heading {
  margin-bottom: clamp(68px, 8vw, 112px);
}

.why-olivo-stack > .operating-design,
.why-olivo-stack > .market-position,
.why-olivo-stack > .team {
  padding-right: 0;
  padding-left: 0;
  background: transparent;
}

.why-olivo-stack > .operating-design {
  padding-top: 0;
  padding-bottom: clamp(84px, 9vw, 136px);
}

.why-olivo-stack > .market-position,
.why-olivo-stack > .team {
  padding-top: clamp(84px, 9vw, 136px);
  padding-bottom: clamp(84px, 9vw, 136px);
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.why-olivo-stack > .team {
  padding-bottom: 0;
}

.backed-strip {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 6px;
  padding: 24px 28px;
  border: 1px solid rgba(88, 107, 58, 0.18);
  border-radius: 24px;
  background: var(--olive-soft);
}

.backed-strip span {
  display: block;
  color: var(--olive-deep);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.backed-strip p {
  margin: 12px 0 0;
  color: #536071;
  font-size: 17px;
  line-height: 1.55;
}

.security-section {
  padding: var(--section-y) var(--section-x);
  background: #101010;
  color: var(--white);
}

.security-heading {
  max-width: 980px;
  margin: 0 auto 70px;
  text-align: center;
}

.security-heading .eyebrow {
  color: #9ba983;
}

.security-section h2 {
  max-width: 960px;
  margin: 0 auto;
  font-size: 64px;
}

.security-heading p:not(.eyebrow) {
  max-width: 790px;
  margin: 28px auto 0;
  color: #b7bec9;
  font-size: 22px;
  line-height: 1.55;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.security-grid article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.security-grid h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.22;
}

.security-grid p {
  margin: 20px 0 0;
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.58;
}

.service-model {
  padding: var(--section-y) var(--section-x);
  background: linear-gradient(180deg, #ffffff 0%, #f8faf7 100%);
}

.service-partnership {
  display: grid;
  justify-items: center;
  scroll-margin-top: 124px;
  padding-top: calc(var(--section-y) + 70px);
  background: var(--white);
  text-align: center;
}

.service-partnership-logo {
  width: min(150px, 38vw);
  margin-bottom: clamp(36px, 4vw, 58px);
}

.service-model .section-heading {
  margin-bottom: clamp(44px, 5vw, 70px);
}

.service-partnership .section-heading {
  max-width: 1080px;
  margin-bottom: clamp(46px, 5vw, 68px);
}

.service-partnership .section-heading h2 {
  max-width: 960px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--font-display-latin), var(--font-korean), var(--font-fallback);
  font-size: 64px;
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line-height);
}

.service-partnership .section-heading p {
  max-width: 790px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.55;
}

.service-model-intro {
  max-width: 880px;
  margin: 0 auto clamp(26px, 3.5vw, 42px);
}

.service-model-intro h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.18;
}

.service-model-intro p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 800;
  line-height: 1.55;
}

.service-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1238px;
  margin: 0 auto;
}

.service-model-grid article {
  display: grid;
  align-content: center;
  min-height: 280px;
  padding: clamp(30px, 3.2vw, 46px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.service-model-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.18;
}

.service-model-grid p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.service-model-grid .button {
  width: fit-content;
  margin-top: 30px;
}

.service-referral {
  width: min(100%, 1030px);
  margin: clamp(22px, 3vw, 34px) auto 0;
  padding: 0;
  color: var(--ink);
}

.service-referral strong {
  display: block;
  color: var(--olive-deep);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.2;
}

.service-referral p {
  max-width: 900px;
  margin: 12px auto 0;
  color: #536071;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 800;
  line-height: 1.55;
}

.service-partnership > .button {
  margin-top: clamp(32px, 4vw, 54px);
}

.backed-strip strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.product-feature,
.feature-row,
.team {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: var(--section-gap);
  align-items: center;
  padding: var(--section-y) var(--section-x);
}

.feature-copy h2,
.product-feature h2,
.team h2 {
  max-width: 720px;
  font-size: 68px;
}

.feature-copy p:not(.eyebrow),
.product-feature p:not(.eyebrow),
.team p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 23px;
  line-height: 1.55;
}

.team .backed-strip strong {
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.18;
}

.team .backed-strip p {
  margin-top: 12px;
  color: #536071;
  font-size: 16px;
  line-height: 1.55;
}

.data-board {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 28px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.board-header span {
  color: var(--olive);
}

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

.board-grid div {
  min-height: 130px;
  padding: 22px;
  border-radius: 18px;
}

.board-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 30px;
}

.board-delta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.board-delta.positive {
  background: var(--olive-soft);
  color: var(--olive-deep);
}

.board-delta.caution {
  background: #fff4d6;
  color: #8a5a00;
}

.board-delta.neutral {
  background: #eef2f7;
  color: #536071;
}

.business {
  min-height: 92vh;
  padding: var(--section-y) var(--section-x);
}

.business-heading {
  text-align: center;
}

.business-heading .eyebrow {
  color: #9ba983;
}

.business h2 {
  max-width: 880px;
  margin: 0 auto;
  font-size: 84px;
}

.business-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: #b8c0cc;
  font-size: 24px;
  line-height: 1.45;
}

.business-flow {
  width: min(100%, 1390px);
  margin: 96px auto 0;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.business-flow::-webkit-scrollbar {
  height: 8px;
}

.business-flow::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.business-flow-head,
.business-flow-row,
.business-flow-arrows {
  display: grid;
  grid-template-columns: minmax(120px, 0.66fr) repeat(6, minmax(150px, 1fr));
  gap: 14px;
  min-width: 1180px;
}

.business-flow-head {
  align-items: end;
  margin-bottom: 14px;
}

.business-flow-head h3 {
  margin: 0;
  padding: 0 10px;
  color: #f5f7fb;
  font-size: 19px;
  line-height: 1.22;
}

.business-flow-row article {
  display: flex;
  align-items: center;
  min-height: 154px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.business-flow-row-to-be article {
  border-color: rgba(155, 169, 131, 0.32);
  background: linear-gradient(180deg, rgba(232, 240, 220, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 0 0 1px rgba(155, 169, 131, 0.10);
}

.business-flow-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 154px;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: #a8b0bd;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.business-flow-row-to-be .business-flow-label {
  border-color: rgba(155, 169, 131, 0.32);
  background: rgba(155, 169, 131, 0.20);
  color: #d7e5c4;
}

.business-flow-row p {
  margin: 0;
  color: #a8b0bd;
  font-size: 16px;
  line-height: 1.5;
}

.business-flow-row-to-be p {
  color: #d2d8e2;
}

.business-flow-arrows {
  align-items: center;
  margin: 14px 0;
}

.business-flow-arrows span {
  display: grid;
  place-items: center;
  height: 42px;
  color: #d7e5c4;
  font-size: 28px;
  font-weight: 800;
}

.business-outcome {
  width: min(100%, 1180px);
  margin: 46px auto 0;
  padding: 24px 28px;
  border: 1px solid rgba(155, 169, 131, 0.28);
  border-radius: 22px;
  background: rgba(232, 240, 220, 0.11);
  color: #eef4e7;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.48;
  text-align: center;
}

.dark-cta {
  margin-top: 70px;
  background: var(--olive);
  color: var(--white);
}

.feature-stack {
  padding: 0;
}

.feature-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
}

.mini-product {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 24px;
}

.mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 4px 28px;
  color: #4b5563;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.mini-header strong {
  min-width: fit-content;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.command-item {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 22px;
  border-radius: 20px;
}

.command-item p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.pill {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.pill.green {
  background: var(--olive-soft);
  color: var(--olive-deep);
}

.pill.black {
  background: var(--black);
  color: var(--white);
}

.pill.gray {
  background: #e5e7eb;
  color: #374151;
}

.workflow {
  position: relative;
  display: grid;
  gap: 28px;
}

.workflow::before {
  content: "";
  position: absolute;
  left: 53px;
  top: 88px;
  bottom: 88px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(88, 107, 58, 0.36), rgba(88, 107, 58, 0.08));
}

.workflow-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 20px;
  row-gap: 6px;
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfa 100%);
}

.workflow-line:not(:last-child)::after {
  content: none;
}

.workflow-line span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(88, 107, 58, 0.10);
}

.workflow-line strong {
  font-size: 24px;
}

.workflow-line p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.operating-design {
  padding: var(--section-y) var(--section-x);
}

.operating-design-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: var(--section-gap);
  align-items: end;
  margin-bottom: 46px;
}

.operating-design h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: 58px;
}

.market-position {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.position-ladder {
  display: grid;
  gap: 12px;
}

.position-ladder article {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(220px, 0.65fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  opacity: 0.62;
  filter: saturate(0.65);
}

.position-ladder article.active {
  border: 2px solid rgba(88, 107, 58, 0.42);
  background: linear-gradient(180deg, rgba(239, 246, 232, 0.96) 0%, rgba(232, 240, 220, 0.88) 100%);
  box-shadow: 0 22px 60px rgba(88, 107, 58, 0.13);
  opacity: 1;
  filter: none;
}

.position-ladder h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.position-ladder article:not(.active) h3 {
  color: #374151;
}

.position-ladder article.active h3 {
  font-size: 24px;
  font-weight: 900;
}

.position-ladder div {
  height: 9px;
  border-radius: 0;
  background: #e3e6eb;
  overflow: hidden;
}

.position-ladder span {
  display: block;
  height: 100%;
  border-radius: 0;
  background: #aab0bb;
}

.position-ladder article.active span {
  background: var(--olive);
}

.position-ladder p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.position-ladder article:not(.active) p {
  color: #7b8493;
}

.position-ladder article.active p {
  color: #536071;
  font-weight: 800;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.design-grid article {
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

html[data-copy-mode="rich"] .design-grid article {
  min-height: 250px;
}

.design-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.22;
}

.design-grid p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.team {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  border-top: 1px solid var(--line);
  align-items: start;
  column-gap: var(--section-gap);
  row-gap: clamp(24px, 2vw, 32px);
}

.team-copy {
  display: contents;
  min-width: 0;
}

.team-copy > p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 23px;
  line-height: 1.55;
}

.team-proof-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 4vw, 56px);
}

.why-proof-grid {
  gap: 12px;
}

.team-proof {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  min-width: 0;
}

.team-proof h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.team-proof p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.cta {
  display: grid;
  place-items: center;
  min-height: 78vh;
  padding: var(--section-y) 24px;
  text-align: center;
}

.cta img {
  width: min(220px, 54vw);
  filter: brightness(1.3);
}

.cta h2 {
  max-width: 1180px;
  margin-top: 54px;
  font-size: 78px;
}

.cta p {
  max-width: 900px;
  margin: 28px 0 0;
  color: #a8b0bd;
  font-size: 23px;
  line-height: 1.55;
}

.coming-soon-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(10px);
}

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

.coming-soon-dialog {
  position: relative;
  width: min(100%, 460px);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.coming-soon-dialog .eyebrow {
  margin: 0 0 14px;
  font-size: 16px;
}

.coming-soon-dialog h2 {
  max-width: 340px;
  margin: 0;
  font-family: var(--font-display-latin), var(--font-korean), var(--font-fallback);
  font-size: 32px;
  line-height: 1.18;
}

html[lang="ko"] .coming-soon-dialog h2 {
  font-family: var(--font-korean), var(--font-display-latin), var(--font-fallback);
}

.coming-soon-dialog p:not(.eyebrow) {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 58px clamp(24px, 7vw, 150px);
  color: #8b95a1;
  background: var(--surface);
}

.site-footer img {
  width: 106px;
}

.site-footer p {
  margin: 16px 0 0;
}

.footer-links {
  display: flex;
  gap: 26px;
  color: #4b5563;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 18px;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .hero,
  .product-feature,
  .feature-row,
  .feature-row.reverse,
  .team {
    grid-template-columns: 1fr;
  }

  .team-copy > p,
  .team-proof-grid,
  .backed-strip {
    grid-column: 1;
  }

  .hero {
    min-height: auto;
    gap: 52px;
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .statement h2,
  .section-heading h2,
  .security-section h2,
  .feature-copy h2,
  .product-feature h2,
  .team h2,
  .market-position h2,
  .operating-design h2 {
    font-size: 56px;
  }

  .business h2,
  .cta h2 {
    font-size: 62px;
  }

  .service-partnership .section-heading h2 {
    font-size: 56px;
  }

  .service-partnership .section-heading p {
    font-size: 21px;
  }

  .service-model-intro h3 {
    font-size: 38px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-dashboard {
    width: min(100%, 860px);
  }

  .business-grid,
  .design-grid,
  .security-grid,
  .service-model-grid,
  .problem-grid,
  .method-grid,
  .deliverable-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .commerce-chaos {
    grid-template-columns: 1fr;
  }

  .deliverable-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .deliverable-panel > .feature-copy h2 {
    font-size: 48px;
  }

  .position-ladder article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .operating-design-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .desktop-break {
    display: none;
  }

  .hero .desktop-break {
    display: inline;
  }

  .site-header {
    height: 64px;
    padding: 0 18px;
  }

  .brand {
    width: 78px;
  }

  .nav-cta {
    display: none;
  }

  .language-toggle {
    font-size: 14px;
  }

  .hero,
  .insight-section,
  .security-section,
  .service-model,
  .product-feature,
  .feature-row,
  .feature-row.reverse,
  .market-position,
  .operating-design,
  .team,
  .business {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    padding-top: 66px;
    padding-bottom: 76px;
  }

  .hero h1 {
    font-size: 46px;
  }

  html[lang="ko"] .hero h1 {
    max-width: 100%;
    font-size: 46px;
    white-space: normal;
  }

  .statement h2,
  .section-heading h2,
  .security-section h2,
  .feature-copy h2,
  .product-feature h2,
  .team h2,
  .business h2,
  .cta h2,
  .market-position h2,
  .operating-design h2 {
    font-size: 38px;
    line-height: 1.16;
  }

  .service-partnership .section-heading h2 {
    font-size: 38px;
    line-height: 1.16;
  }

  .service-partnership .section-heading p,
  .service-model-intro p {
    font-size: 18px;
  }

  .service-model-intro h3 {
    font-size: 28px;
  }

  .service-model-grid h3 {
    font-size: 28px;
  }

  .service-model-grid p {
    font-size: 17px;
  }

  .team-proof h3 {
    font-size: 19px;
  }

  .team-proof p {
    font-size: 16px;
  }

  .eyebrow {
    font-size: 18px;
  }

  .hero-lede,
  .statement p,
  .section-heading p:not(.eyebrow),
  .security-heading p:not(.eyebrow),
  .feature-copy p:not(.eyebrow),
  .product-feature p:not(.eyebrow),
  .team p:not(.eyebrow),
  .cta p {
    font-size: 19px;
  }

  .metric-strip,
  .board-grid,
  .business-grid,
  .security-grid,
  .service-model-grid,
  .design-grid,
  .problem-grid,
  .method-grid,
  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .team-proof-grid {
    grid-template-columns: 1fr;
  }

  .business-flow {
    margin-top: 48px;
    overflow: visible;
  }

  .business-flow-head,
  .business-flow-row,
  .business-flow-arrows {
    grid-template-columns: 1fr;
    min-width: 0;
    gap: 10px;
  }

  .business-flow-head > span,
  .business-flow-arrows {
    display: none;
  }

  .business-flow-head h3 {
    padding: 0;
    font-size: 18px;
  }

  .business-flow-label,
  .business-flow-row article {
    min-height: auto;
    padding: 18px;
  }

  .deliverable-tabs {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .deliverable-tabs button {
    min-height: 52px;
    justify-content: flex-start;
    text-align: left;
  }

  .deliverable-panel {
    padding: 20px;
    gap: 22px;
  }

  .deliverable-panel > .feature-copy h2 {
    font-size: 38px;
  }

  .deliverable-panel > .feature-copy p:not(.eyebrow) {
    font-size: 19px;
  }

  .deliverable-copy h3 {
    font-size: 34px;
  }

  .deliverable-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .deliverable-preview {
    padding: 18px;
    border-radius: 22px;
  }

  .preview-metrics,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .preview-metrics div,
  .decision-grid div {
    min-height: auto;
  }

  .preview-table div {
    grid-template-columns: 1fr 0.65fr 0.65fr;
    padding: 13px 14px;
  }

  .screen-shell,
  .hero-dashboard,
  .data-board,
  .mini-product {
    border-radius: 24px;
  }

  .dashboard-browser {
    grid-template-columns: minmax(0, 1fr);
    min-height: 54px;
    padding: 10px 12px;
  }

  .browser-dots {
    display: none;
  }

  .browser-url {
    padding: 9px 12px;
    font-size: 13px;
    line-height: 1.25;
    white-space: normal;
  }

  .dashboard-stage {
    grid-template-columns: 1fr;
  }

  .dashboard-menu {
    display: none;
  }

  .dashboard-content {
    padding: 14px;
  }

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

  .dashboard-kpis article {
    min-height: 96px;
    padding: 14px;
  }

  .dashboard-kpis strong {
    font-size: 23px;
  }

  .dashboard-panels {
    grid-template-columns: 1fr;
  }

  .dashboard-panel {
    min-height: auto;
    padding: 16px;
  }

  .statement {
    min-height: auto;
    padding: 88px 22px;
  }

  .product-feature,
  .feature-row,
  .feature-row.reverse,
  .insight-section,
  .market-position,
  .operating-design,
  .team {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .commerce-chaos {
    gap: 22px;
    margin-bottom: 30px;
    padding: 20px;
  }

  .commerce-copy strong {
    font-size: 25px;
  }

  .commerce-copy p {
    font-size: 16px;
  }

  .commerce-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    aspect-ratio: auto;
    min-height: auto;
    padding: 16px;
  }

  .commerce-lines,
  .settlement-issue {
    display: none;
  }

  .brand-node,
  .conflict-core,
  .brand-more {
    position: static;
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 52px;
    transform: none;
  }

  .brand-node {
    padding: 12px 10px;
    border-radius: 14px;
  }

  .brand-node img {
    max-width: 92px;
    max-height: 22px;
  }

  .brand-tiktok span {
    font-size: 13px;
  }

  .brand-more {
    grid-column: 1 / 2;
    min-height: 44px;
    letter-spacing: 0.12em;
  }

  .conflict-core {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 16px;
  }

  .problem-grid article,
  .method-grid article,
  .deliverable-grid article,
  .security-grid article,
  .business-grid article {
    min-height: auto;
  }

  .security-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .security-heading p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }

  .security-grid article {
    padding: 24px;
  }

  .security-grid h3 {
    margin-top: 0;
    font-size: 24px;
  }

  .security-grid p {
    font-size: 16px;
  }

  .business {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .business-grid {
    margin-top: 70px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
