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

:root {
  --ink: #0d1a33;
  --ink-2: #2a3855;
  --muted: #5c6a86;
  --line: #e5e9f2;
  --paper: #ffffff;
  --paper-2: #f6f8fc;
  --brand: #1b3a6b;
  --brand-2: #3d6ea8;
  --gold: #b58a3d;
  --gold-2: #d9b26a;
  --danger: #b3261e;
  --ok: #1f7a4a;
  --shadow-sm: 0 2px 8px rgba(13, 26, 51, 0.06);
  --shadow-md: 0 12px 28px rgba(13, 26, 51, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
}

html, body { margin: 0; padding: 0; }
body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 1;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.brand-text strong { font-size: 15px; }
.brand-text em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  max-width: 100%;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
  scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 8px;
  white-space: nowrap;
}
.nav a:hover { background: var(--paper-2); }
.nav .nav-cta {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}
.nav .nav-cta:hover { background: var(--brand); }

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #0b1c3a;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-illustration {
  display: none;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,28,58,0.55) 0%, rgba(11,28,58,0.1) 35%, rgba(11,28,58,0.82) 100%),
    linear-gradient(90deg, rgba(11,28,58,0.6) 0%, rgba(11,28,58,0.0) 60%);
  z-index: -1;
}
.hero-content {
  padding: 100px 20px 80px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  color: #ffe8b0;
  background: rgba(255,255,255,0.05);
}
.hero-title {
  margin: 22px 0 18px;
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-title-main {
  background: linear-gradient(90deg, #ffd68a, #ffffff 60%, #ffe8b0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  max-width: 680px;
  color: #dfe7f4;
  margin: 0 0 32px;
}
.hero-sub b { color: #ffd68a; font-weight: 700; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1204;
  box-shadow: 0 12px 26px rgba(181, 138, 61, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.05s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.hero-call:hover { filter: brightness(1.05); }
.hero-call:active { transform: translateY(1px); }
.hero-call-label {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(26, 18, 4, 0.12);
  color: #3a2a08;
}
.hero-call-icon {
  font-size: 22px;
  line-height: 1;
}
.hero-call-number {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #1a1204;
}
.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
}
.hero-stats li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}
.hero-stats strong {
  display: block;
  font-size: clamp(18px, 3vw, 24px);
  color: #ffd68a;
}
.hero-stats span {
  display: block;
  font-size: 12px;
  color: #dfe7f4;
  margin-top: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.05s ease, background 0.15s ease, border-color 0.15s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1204;
  box-shadow: 0 8px 20px rgba(181, 138, 61, 0.35);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: default; }

/* Sections */
.section {
  padding: 80px 0;
  background: var(--paper);
}
.section-alt {
  background: var(--paper-2);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 12px;
  font-weight: 700;
}
.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.section-head h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.section-alt .card { background: #fff; }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eaf0fb, #f7ecd6);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.about-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-key {
  display: inline-block;
  align-self: flex-start;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: linear-gradient(135deg, #eaf0fb, #f7ecd6);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 6px;
}
.about-card strong {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.35;
}
.about-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Cluster (Yongin Semiconductor Cluster overview) */
.cluster-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.stat-tile {
  background: linear-gradient(160deg, #0d1a33, #1b3a6b);
  color: #eef3fb;
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd68a;
  font-weight: 700;
}
.stat-value {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat-value em {
  font-style: normal;
  font-size: 0.5em;
  color: #dfe7f4;
  margin-left: 4px;
  font-weight: 700;
}
.stat-sub {
  font-size: 12.5px;
  color: #c9d4e6;
  line-height: 1.5;
}

.cluster-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: start;
}
.cluster-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cluster-figure img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}
.cluster-info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cluster-info h3 {
  margin: 0;
  font-size: 18px;
  color: var(--brand);
}
.cluster-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cluster-list li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
}
.cluster-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.cluster-list li span {
  font-weight: 700;
  color: var(--ink);
  margin-right: 6px;
}
.cluster-callout {
  margin-top: 4px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #f7ecd6, #ffe8b0);
  padding: 14px 16px;
  border: 1px solid #efd9a1;
}
.cluster-callout span {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.cluster-callout p {
  margin: 0;
  color: #4a3818;
  font-size: 14px;
  line-height: 1.55;
}

/* Cluster — Employment Demand */
.demand-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.demand-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.demand-card {
  position: relative;
  background: linear-gradient(160deg, #0d1a33, #1b3a6b);
  color: #eef3fb;
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}
.demand-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 214, 138, 0.18), rgba(255, 214, 138, 0));
  pointer-events: none;
}
.demand-mark {
  align-self: flex-start;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #1a1204;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
}
.demand-label {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd68a;
  font-weight: 700;
}
.demand-value {
  font-size: clamp(32px, 4.4vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.demand-value em {
  font-style: normal;
  font-size: 0.48em;
  color: #dfe7f4;
  margin-left: 4px;
  font-weight: 700;
}
.demand-desc {
  margin: 4px 0 0;
  color: #c9d4e6;
  font-size: 13.5px;
  line-height: 1.6;
  position: relative;
}
.demand-desc b {
  color: #ffd68a;
  font-weight: 800;
}
.demand-total {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7ecd6, #ffe8b0);
  border: 1px solid #efd9a1;
  box-shadow: var(--shadow-sm);
}
.demand-total-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  padding: 6px 12px;
  background: rgba(26, 18, 4, 0.06);
  border-radius: 999px;
  white-space: nowrap;
}
.demand-total-body {
  display: flex;
  align-items: baseline;
  gap: 16px;
  min-width: 0;
  flex-wrap: wrap;
}
.demand-total-value {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 900;
  color: #3a2a08;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.demand-total-desc {
  margin: 0;
  color: #4a3818;
  font-size: 14px;
  line-height: 1.55;
  flex: 1 1 260px;
  min-width: 0;
}
.demand-total-desc b {
  color: #7a5a1a;
  font-weight: 800;
}

/* Sub-head within cluster section */
.sub-head {
  text-align: center;
  max-width: 780px;
  margin: 56px auto 28px;
}
.sub-head .eyebrow { display: inline-block; margin-bottom: 10px; }
.sub-head h2,
.sub-head h3 {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.sub-head h2 { font-size: clamp(22px, 3vw, 30px); }
.sub-head h3 { font-size: clamp(19px, 2.4vw, 24px); }
.sub-head h2 em,
.sub-head h3 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sub-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* Sobujang (materials/parts/equipment) */
.sobujang-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: start;
}
.sobujang-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
  box-shadow: var(--shadow-sm);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobujang-figure img {
  width: 100%;
  height: auto;
  max-height: 900px;
  object-fit: contain;
}
.sobujang-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.sobujang-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.sobujang-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fbfcff, #f6f8fc);
  min-width: 0;
}
.sobujang-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}
.sobujang-list li strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 2px;
}
.sobujang-list li em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

/* Rising hotspot */
.rising-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}
.rising-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rising-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  align-items: start;
}
.rising-num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1204;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-weight: 800;
  font-size: 15px;
}
.rising-list strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}
.rising-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}
.rising-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rising-figure img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

/* Economic impact */
.impact-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: start;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.impact-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.impact-tile-hero {
  grid-column: 1 / -1;
  background: linear-gradient(160deg, #0d1a33, #1b3a6b);
  color: #eef3fb;
  border-color: transparent;
}
.impact-tile-hero .impact-label { color: #ffd68a; }
.impact-tile-hero .impact-value { color: #fff; }
.impact-tile-hero .impact-value em { color: #dfe7f4; }
.impact-tile-hero .impact-sub { color: #c9d4e6; }
.impact-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-2);
  font-weight: 700;
}
.impact-value {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.impact-tile-hero .impact-value {
  font-size: clamp(40px, 6vw, 60px);
  color: #ffd68a;
}
.impact-value em {
  font-style: normal;
  font-size: 0.5em;
  color: var(--muted);
  margin-left: 4px;
  font-weight: 700;
}
.impact-sub {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.impact-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.impact-figure img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

/* Adjacent industrial complex */
.adjacent-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}
.adjacent-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adjacent-figure img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
}
.adjacent-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.adjacent-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: linear-gradient(135deg, #eaf0fb, #f7ecd6);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.adjacent-panel h3 {
  margin: 0;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.35;
}
.adjacent-facts {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.adjacent-facts > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.adjacent-facts > div:last-child { border-bottom: 0; }
.adjacent-facts span {
  color: var(--muted);
  font-weight: 600;
  font-size: 12.5px;
}
.adjacent-facts strong {
  color: var(--ink);
  font-weight: 700;
}
.adjacent-callout {
  margin-top: 2px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #eaf0fb, #d8e3f5);
  padding: 14px 16px;
  border: 1px solid #c7d6ee;
}
.adjacent-callout span {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 4px;
}
.adjacent-callout p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}
.adjacent-callout p b { color: var(--brand); }

/* Scarcity (market analysis) */
.scarcity-hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}
.scarcity-hero-card {
  background: linear-gradient(160deg, #0d1a33, #1b3a6b);
  color: #eef3fb;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scarcity-hero-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd68a;
  font-weight: 700;
}
.scarcity-hero-value {
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 900;
  color: #ffd68a;
  line-height: 1;
  letter-spacing: -0.03em;
}
.scarcity-hero-value em {
  font-style: normal;
  font-size: 0.45em;
  color: #fff;
  margin-left: 6px;
  font-weight: 800;
}
.scarcity-hero-sub {
  color: #dfe7f4;
  font-size: 14px;
}
.scarcity-hero-sub b { color: #ffd68a; font-weight: 700; }
.scarcity-hero-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px dashed rgba(255,255,255,0.2);
  padding-top: 14px;
}
.scarcity-hero-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #c9d4e6;
}
.scarcity-hero-list li strong {
  color: #fff;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-weight: 700;
}
.scarcity-hero-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f6f8fc);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scarcity-hero-figure img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

.scarcity-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.scarcity-table-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}
.scarcity-table-card h3 {
  margin: 0 0 14px;
  font-size: 15.5px;
  color: var(--brand);
}
.scarcity-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
  max-width: 100%;
}
.scarcity-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 13px;
}
.scarcity-table thead th {
  background: var(--paper-2);
  color: var(--ink-2);
  font-weight: 700;
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.scarcity-table thead th:nth-child(n+2) { text-align: right; }
.scarcity-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.scarcity-table tbody td:nth-child(n+2) {
  text-align: right;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-weight: 600;
  color: var(--ink);
}
.scarcity-table tbody tr:last-child td { border-bottom: 0; }
.scarcity-row-hi td {
  background: linear-gradient(90deg, #fff5df, #fce9c1);
  color: var(--ink) !important;
  font-weight: 800 !important;
}
.scarcity-row-hi td:last-child { color: var(--gold) !important; }
.scarcity-note {
  margin: 20px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}

/* Composition */
.composition {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}
.floor-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-sm);
}
.floor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
}
.floor-label {
  font-weight: 800;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
}
.floor-desc { color: rgba(255,255,255,0.85); }
.floor-office {
  background: linear-gradient(90deg, #22406e, #345f9c);
  color: #fff;
}
.floor-office-first {
  background: linear-gradient(90deg, #345f9c, #4a7ab8);
}
.floor-retail {
  background: linear-gradient(90deg, #8a7351, #b39463);
  color: #fff;
}
.floor-retail-top {
  background: linear-gradient(90deg, #ad8b57, #d1a970);
}

.composition-info {
  display: grid;
  gap: 16px;
}
.tier {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.tier h3 {
  margin: 0 0 10px;
  font-size: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.tier h3 span {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-2);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
}
.tier ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 14px;
}
.tier ul li { margin: 4px 0; }
.tier-retail h3 span { color: var(--gold); }
.tier-office h3 span { color: var(--brand); }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.location-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}
.location-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.location-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Materials */
.material-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  flex-wrap: wrap;
}
.material-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.material-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #b3261e, #e45c53);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.material-body {
  flex: 1 1 260px;
  min-width: 0;
}
.material-body strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}
.material-body span {
  color: var(--muted);
  font-size: 13px;
}
.material-cta {
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
}

/* Inquiry — phone-only CTA */
.call-hero {
  display: flex;
  justify-content: center;
}
.call-hero-inner {
  width: 100%;
  max-width: 720px;
  background: linear-gradient(160deg, #0d1a33, #1b3a6b);
  color: #eef3fb;
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.call-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffd68a;
  font-weight: 800;
  padding: 6px 14px;
  border: 1px solid rgba(255, 214, 138, 0.45);
  border-radius: 999px;
  background: rgba(255, 214, 138, 0.08);
}
.call-hero-number {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #ffd68a;
  line-height: 1;
  transition: filter 0.15s ease;
}
.call-hero-number:hover { filter: brightness(1.1); }
.call-hero-icon {
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1;
}
.call-hero-digits {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #ffd68a;
  text-shadow: 0 4px 22px rgba(255, 214, 138, 0.28);
}
.call-hero-meta {
  margin: 4px 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px dashed rgba(255,255,255,0.18);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
.call-hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
  font-size: 13px;
  text-align: center;
}
.call-hero-meta span {
  color: #ffd68a;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.call-hero-meta strong {
  color: #eef3fb;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.4;
}
.call-hero-btn {
  margin-top: 4px;
  max-width: 420px;
  font-size: 16px;
  padding: 16px 22px;
}

/* Inquiry (legacy) */
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}
.inquiry-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(61, 110, 168, 0.15);
}
.field textarea { resize: vertical; min-height: 96px; }
.field-consent .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
}
.field-consent .check input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  min-height: 18px;
}
.form-status.is-ok { color: var(--ok); }
.form-status.is-err { color: var(--danger); }

.inquiry-side {
  background: linear-gradient(160deg, #0d1a33, #1b3a6b);
  color: #eef3fb;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.inquiry-side h3 {
  margin: 0 0 12px;
  color: #ffd68a;
  font-size: 17px;
}
.inquiry-side ul {
  padding-left: 18px;
  margin: 0 0 16px;
  font-size: 14px;
}
.inquiry-side ul li { margin: 4px 0; }
.side-note {
  margin: 0;
  font-size: 12.5px;
  color: #c9d4e6;
  line-height: 1.6;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  background: #0d1a33;
  color: #dfe7f4;
  padding: 28px 0;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer strong { display: block; color: #fff; margin-bottom: 2px; }
.footer span { color: #a4b3cc; }
.footer-meta { color: #8ea0be; font-size: 12px; }

/* Responsive */
@media (max-width: 900px) {
  .composition { grid-template-columns: 1fr; }
  .inquiry-grid { grid-template-columns: 1fr; }
  .cluster-detail { grid-template-columns: 1fr; }
  .adjacent-wrap { grid-template-columns: 1fr; }
  .scarcity-hero { grid-template-columns: 1fr; }
  .scarcity-tables { grid-template-columns: 1fr; }
  .sobujang-wrap { grid-template-columns: 1fr; }
  .rising-wrap { grid-template-columns: 1fr; }
  .impact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-content { padding: 72px 20px 60px; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 56px 0; }
  .inquiry-form { grid-template-columns: 1fr; padding: 22px; }
  .call-hero-inner { padding: 32px 20px 24px; gap: 16px; }
  .call-hero-meta { grid-template-columns: 1fr; gap: 10px; }
  .call-hero-meta li { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 10px; text-align: left; }
  .call-hero-btn { font-size: 15px; padding: 14px 18px; }
  .hero-call { padding: 12px 18px 12px 14px; gap: 10px; }
  .hero-call-label { display: none; }
  .nav a { padding: 8px 10px; font-size: 13px; }
  .brand-text strong { font-size: 14px; }
  .brand-text em { font-size: 11px; }
  .topbar-inner { height: 60px; }
  .material-card { padding: 18px; gap: 14px; }
  .material-cta { width: 100%; }
  .cluster-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .demand-cards { grid-template-columns: 1fr; gap: 14px; }
  .demand-card { padding: 22px 20px 20px; }
  .demand-total { grid-template-columns: 1fr; gap: 12px; padding: 20px 22px; text-align: left; }
  .demand-total-body { gap: 10px; }
  .cluster-info,
  .adjacent-panel,
  .scarcity-hero-card { padding: 22px; }
  .adjacent-facts > div { grid-template-columns: 74px 1fr; padding: 9px 12px; }
  .scarcity-table-card { padding: 18px; }
  .cluster-figure,
  .adjacent-figure,
  .scarcity-hero-figure,
  .sobujang-figure,
  .rising-figure,
  .impact-figure { padding: 12px; }
  .cluster-figure img,
  .adjacent-figure img,
  .scarcity-hero-figure img,
  .sobujang-figure img,
  .rising-figure img,
  .impact-figure img { max-height: none; }
  .sobujang-list { grid-template-columns: 1fr; }
  .sobujang-panel { padding: 16px; }
  .rising-list li { padding: 16px 18px; grid-template-columns: 48px 1fr; gap: 12px; }
  .rising-num { width: 42px; height: 42px; font-size: 14px; }
  .impact-tile { padding: 18px; }
  .sub-head { margin-top: 40px; }
}
@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
  .nav { gap: 0; }
  .cluster-stats { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
}
