:root {
  --bg: #f5f7f6;
  --surface: #ffffff;
  --surface-2: #eef3f0;
  --ink: #10231d;
  --muted: #687872;
  --line: rgba(16, 35, 29, 0.12);
  --brand: #0b7a53;
  --brand-2: #9bc53d;
  --brand-dark: #073c2c;
  --navy: #071d18;
  --danger: #d94645;
  --warning: #d99213;
  --info: #3478f6;
  --shadow: 0 24px 80px rgba(10, 46, 34, 0.10);
  --shadow-soft: 0 12px 40px rgba(10, 46, 34, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1380px, calc(100% - 48px));
  --topbar-height: 78px;
}

html[data-theme="dark"] {
  --bg: #081713;
  --surface: #0d211b;
  --surface-2: #132b24;
  --ink: #eaf6f1;
  --muted: #9db3aa;
  --line: rgba(235, 255, 246, 0.12);
  --brand: #38b980;
  --brand-2: #b7dc53;
  --brand-dark: #0a4f38;
  --navy: #04100d;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.26);
  --shadow-soft: 0 12px 50px rgba(0, 0, 0, 0.20);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .3s ease, color .3s ease;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(11,122,83,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.4), transparent 55%);
  z-index: -1;
}

button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  z-index: 1000;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  padding: 0 max(24px, calc((100vw - 1380px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  z-index: 500;
  transition: .3s ease;
}
.topbar.scrolled {
  height: 66px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(10,46,34,.06);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 252px; }
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.09);
}
.brand-mark img { width: 90%; height: 90%; object-fit: contain; }
.brand-fallback { display: none; place-items: center; width: 100%; height: 100%; color: var(--brand); font-weight: 800; }
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-size: 13px; letter-spacing: .05em; }
.brand-copy small { color: var(--muted); font-size: 10px; margin-top: 4px; letter-spacing: .06em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--brand);
  transition: right .25s ease;
}
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { right: 0; }

.topbar-actions { display: flex; align-items: center; gap: 10px; }
.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: .22s ease;
}
.icon-button:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--brand) 50%, var(--line)); }
.icon-button svg { width: 18px; }

.mobile-menu-button { display: none; }
.mobile-menu {
  position: fixed;
  top: 70px;
  right: 24px;
  width: min(280px, calc(100vw - 48px));
  padding: 12px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  z-index: 490;
}
.mobile-menu.open { display: grid; }
.mobile-menu a { padding: 13px 14px; border-radius: 10px; font-weight: 600; }
.mobile-menu a:hover { background: var(--surface-2); }

.button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; }
.button-sm { min-height: 40px; padding: 0 14px; border-radius: 11px; }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #075f43);
  box-shadow: 0 12px 28px rgba(11, 122, 83, .24);
}
.button-primary:hover { box-shadow: 0 16px 34px rgba(11, 122, 83, .32); }
.button-secondary { background: var(--surface); color: var(--ink); border-color: var(--line); }
.button-ghost { background: color-mix(in srgb, var(--surface) 68%, transparent); color: var(--ink); border-color: var(--line); }

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0;
  scroll-margin-top: 70px;
}
.section-muted {
  width: 100%;
  padding-left: max(24px, calc((100vw - 1380px) / 2));
  padding-right: max(24px, calc((100vw - 1380px) / 2));
  background: color-mix(in srgb, var(--surface-2) 62%, transparent);
  border-block: 1px solid var(--line);
}
.section-dark {
  width: 100%;
  padding-left: max(24px, calc((100vw - 1380px) / 2));
  padding-right: max(24px, calc((100vw - 1380px) / 2));
  color: #eaf8f2;
  background:
    radial-gradient(circle at 10% 0%, rgba(56,185,128,.15), transparent 30%),
    radial-gradient(circle at 90% 28%, rgba(183,220,83,.10), transparent 26%),
    #061712;
  position: relative;
  overflow: hidden;
}
.section-dark::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  top: 280px;
  right: -310px;
  box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012);
  pointer-events: none;
}
.hero { padding-top: 154px; min-height: 860px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; }
.hero-copy { max-width: 720px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 11px;
  letter-spacing: .19em;
  font-weight: 800;
  margin-bottom: 20px;
}
.eyebrow span { width: 34px; height: 2px; background: var(--brand-2); }
.hero h1, .section-heading h2 {
  margin: 0;
  letter-spacing: -.055em;
  line-height: 1.08;
}
.hero h1 { font-size: clamp(48px, 6.2vw, 84px); max-width: 840px; }
.hero h1 em, .section-heading h2 em { font-style: normal; color: var(--brand); }
.hero-copy > p { max-width: 690px; font-size: 17px; color: var(--muted); margin: 28px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.source-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
}
.source-chip svg { width: 16px; color: var(--brand); }

.hero-dashboard {
  min-height: 610px;
  position: relative;
  border-radius: 34px;
  padding: 30px;
  color: #eafff5;
  background:
    linear-gradient(150deg, rgba(18, 74, 56, .98), rgba(4, 26, 20, .98)),
    #082119;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 40px 100px rgba(4, 30, 22, .25);
  overflow: hidden;
}
.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}
.dashboard-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(126, 211, 116, .18);
  filter: blur(80px);
}
.dashboard-header, .mini-timeline { position: relative; z-index: 2; }
.dashboard-header { display: flex; justify-content: space-between; align-items: flex-start; }
.dashboard-header small { display: block; color: #9bb6ab; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.dashboard-header strong { display: block; margin-top: 4px; font-size: 19px; }
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  color: #cde7dd;
  font-size: 10px;
}
.live-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 0 5px rgba(183,220,83,.12); }

.hero-ring-wrap { height: 390px; position: relative; display: grid; place-items: center; z-index: 1; }
.hero-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--brand-2) 0 33%, rgba(255,255,255,.12) 33% 37%, #41be87 37% 70%, rgba(255,255,255,.12) 70% 74%, #e6f2a3 74% 100%);
  box-shadow: inset 0 0 70px rgba(255,255,255,.14), 0 0 80px rgba(111,211,146,.15);
  animation: ringFloat 5s ease-in-out infinite;
}
.hero-ring::after {
  content: "";
  width: 204px;
  height: 204px;
  border-radius: 50%;
  background: #09281f;
  border: 1px solid rgba(255,255,255,.08);
  position: absolute;
}
.hero-ring-inner { position: relative; z-index: 2; text-align: center; }
.hero-ring-inner strong { display: block; font-size: 70px; line-height: .9; letter-spacing: -.06em; }
.hero-ring-inner span { font-size: 11px; letter-spacing: .3em; color: #a9c4b9; }
.ring-orbit { position: absolute; inset: 43px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; animation: orbit 18s linear infinite; }
.ring-orbit span {
  width: 42px; height: 42px; border-radius: 50%; background: #143c30; border: 1px solid rgba(255,255,255,.13);
  display: grid; place-items: center; color: var(--brand-2); font-size: 11px; font-weight: 800; position: absolute; top: -21px; left: 50%;
}
.orbit-two { inset: 70px; animation-direction: reverse; animation-duration: 14s; }
.orbit-two span { top: 50%; left: auto; right: -21px; color: #6ed5a1; }
.orbit-three { inset: 16px; animation-duration: 24s; }
.orbit-three span { top: auto; bottom: -21px; left: 28%; color: #e6f2a3; }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes ringFloat { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }

.mini-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mini-phase {
  min-height: 78px; padding: 14px; border-radius: 15px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.07);
}
.mini-phase > span { color: #8faea2; font-size: 11px; font-weight: 800; }
.mini-phase b { display: block; font-size: 12px; }
.mini-phase small { display: block; color: #8faea2; font-size: 9px; margin-top: 2px; }
.mini-phase.active { background: rgba(183,220,83,.11); border-color: rgba(183,220,83,.22); }
.mini-phase.active > span { color: var(--brand-2); }

.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 54px; }
.metric-card {
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.metric-card::after {
  content: "";
  position: absolute;
  width: 110px; height: 110px; border-radius: 50%;
  right: -40px; top: -40px;
  background: color-mix(in srgb, var(--brand) 8%, transparent);
}
.metric-icon {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 12px; color: var(--brand); background: color-mix(in srgb, var(--brand) 10%, transparent);
}
.metric-icon svg { width: 18px; }
.metric-value { display: block; margin-top: 18px; font-size: 31px; line-height: 1; letter-spacing: -.04em; }
.metric-label { display: block; color: var(--muted); font-size: 11px; margin-top: 7px; }
.metric-trend { position: absolute; right: 20px; bottom: 20px; color: var(--brand); font-size: 10px; font-weight: 700; }

.management-note {
  margin-top: 16px;
  padding: 17px 20px;
  border: 1px dashed color-mix(in srgb, var(--warning) 45%, var(--line));
  border-radius: 16px;
  background: color-mix(in srgb, #f5b942 8%, var(--surface));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}
.management-note-icon { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; color: var(--warning); background: color-mix(in srgb, #f5b942 15%, transparent); }
.management-note-icon svg { width: 19px; }
.management-note strong { font-size: 13px; }
.management-note p { margin: 2px 0 0; color: var(--muted); font-size: 11px; }
.text-button {
  background: none; border: 0; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 11px; cursor: pointer;
}
.text-button svg { width: 15px; }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 48px; }
.section-heading h2 { font-size: clamp(36px, 4.7vw, 62px); }
.section-heading > p { max-width: 430px; margin: 0; color: var(--muted); }
.section-heading.light h2 { color: #effaf6; }
.section-heading.light h2 em { color: var(--brand-2); }
.section-heading.light > p { color: #9db7ad; }
.section-heading.light .eyebrow { color: var(--brand-2); }

.goal-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.goal-card {
  grid-column: span 4;
  min-height: 230px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: .28s ease;
}
.goal-card:nth-child(1), .goal-card:nth-child(6) { grid-column: span 5; }
.goal-card:nth-child(2), .goal-card:nth-child(7) { grid-column: span 3; }
.goal-card:nth-child(3) { grid-column: span 4; }
.goal-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 32%, var(--line)); }
.goal-index { color: color-mix(in srgb, var(--brand) 55%, var(--muted)); font-size: 10px; letter-spacing: .13em; font-weight: 800; }
.goal-icon { width: 48px; height: 48px; margin: 26px 0 22px; border-radius: 15px; display: grid; place-items: center; background: color-mix(in srgb, var(--brand) 10%, transparent); color: var(--brand); }
.goal-icon svg { width: 22px; }
.goal-card h3 { font-size: 18px; margin: 0; line-height: 1.4; }
.goal-line { position: absolute; height: 4px; left: 26px; bottom: 0; right: 55%; border-radius: 8px 8px 0 0; background: linear-gradient(90deg, var(--brand), var(--brand-2)); transition: right .3s ease; }
.goal-card:hover .goal-line { right: 26px; }

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}
.roadmap-card {
  min-height: 240px;
  padding: 26px;
  border-radius: var(--radius-lg);
  color: #dff8ed;
  background: #09271f;
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}
.roadmap-card::after {
  content: attr(data-number);
  position: absolute;
  right: -5px;
  bottom: -42px;
  font-size: 150px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255,255,255,.035);
  letter-spacing: -.08em;
}
.roadmap-card:nth-child(2) { background: #0c3529; }
.roadmap-card:nth-child(3) { background: linear-gradient(150deg, #236c49, #0c3b2d); }
.roadmap-meta { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.roadmap-number { color: var(--brand-2); font-size: 11px; letter-spacing: .16em; font-weight: 800; }
.roadmap-months { padding: 5px 9px; border-radius: 999px; background: rgba(255,255,255,.07); color: #adc5bc; font-size: 9px; }
.roadmap-card h3 { position: relative; z-index: 1; margin: 44px 0 12px; font-size: 23px; max-width: 290px; line-height: 1.25; }
.roadmap-card p { position: relative; z-index: 1; color: #9cb8ad; font-size: 12px; margin: 0; max-width: 320px; }

.phase-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.phase-tab {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 11px;
  color: var(--muted);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}
.phase-tab span { color: color-mix(in srgb, var(--brand) 70%, var(--muted)); font-size: 10px; }
.phase-tab.active { background: var(--surface); color: var(--ink); box-shadow: 0 7px 22px rgba(8,40,30,.08); }

.phase-stage {
  min-height: 540px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.phase-intro { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.phase-intro small { color: var(--brand); font-weight: 800; letter-spacing: .12em; font-size: 10px; }
.phase-intro h3 { margin: 7px 0 8px; font-size: 31px; letter-spacing: -.035em; }
.phase-intro p { margin: 0; color: var(--muted); max-width: 780px; }
.phase-badge { flex: 0 0 auto; padding: 10px 14px; border-radius: 999px; color: var(--brand); background: color-mix(in srgb, var(--brand) 10%, transparent); font-size: 10px; font-weight: 800; }

.department-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.department-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 22px;
}
.department-top { display: flex; gap: 14px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.department-icon { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: var(--surface); color: var(--brand); box-shadow: 0 8px 20px rgba(8,40,30,.07); }
.department-icon svg { width: 19px; }
.department-card h4 { margin: 0; font-size: 15px; }
.department-body { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; padding-top: 18px; }
.department-body h5 { margin: 0 0 10px; color: var(--muted); font-size: 9px; letter-spacing: .12em; }
.clean-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.clean-list li { position: relative; padding-left: 15px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.clean-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-2); }
.action-list li { color: var(--ink); font-weight: 600; }
.classification-title { margin: 30px 0 15px; display: flex; align-items: center; justify-content: space-between; }
.classification-title h4 { margin: 0; font-size: 18px; }
.classification-title span { color: var(--muted); font-size: 10px; }
.classification-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.class-card { min-height: 190px; padding: 18px; border-radius: 16px; background: var(--surface-2); border: 1px solid var(--line); }
.class-card .goal-icon { margin: 0 0 16px; width: 38px; height: 38px; border-radius: 12px; }
.class-card h5 { margin: 0 0 10px; font-size: 12px; }
.class-card ul { margin: 0; padding: 0 0 0 15px; color: var(--muted); font-size: 10px; }
.class-objective { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--brand); font-size: 10px; font-weight: 800; }

.workflow {
  display: grid;
  grid-template-columns: repeat(7, minmax(90px, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: 28px;
}
.workflow-step {
  min-height: 150px;
  padding: 17px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  position: relative;
}
.workflow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-weight: 800;
  z-index: 2;
}
.workflow-step span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; color: var(--brand); background: color-mix(in srgb, var(--brand) 10%, transparent); font-size: 10px; font-weight: 800; }
.workflow-step h5 { margin: 19px 0 6px; font-size: 12px; }
.workflow-step p { margin: 0; color: var(--muted); font-size: 10px; }
.branch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 18px; }
.branch-card { padding: 18px; border-radius: 16px; background: color-mix(in srgb, var(--brand) 6%, var(--surface)); border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line)); }
.branch-card i { color: var(--brand); font-style: normal; font-size: 10px; font-weight: 800; }
.branch-card h5 { margin: 8px 0 5px; font-size: 12px; }
.branch-card p { margin: 0; color: var(--muted); font-size: 10px; }
.phase-note {
  margin-top: 18px; padding: 18px 20px; border-radius: 16px; background: var(--surface-2);
  display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start;
}
.phase-note svg { color: var(--brand); width: 19px; margin-top: 2px; }
.phase-note strong { font-size: 12px; }
.phase-note p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }

.growth-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.growth-card {
  min-height: 270px;
  padding: 24px;
  border-radius: 20px;
  background: #09271f;
  color: #e7faf2;
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
}
.growth-card:nth-child(2) { background: #0c382b; }
.growth-card:nth-child(3) { background: #14513a; }
.growth-card:nth-child(4) { background: linear-gradient(150deg, #39835d, #155038); }
.growth-index { color: var(--brand-2); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.growth-card h4 { font-size: 18px; margin: auto 0 10px; line-height: 1.35; }
.growth-card p { margin: 0; color: #a7c1b6; font-size: 11px; }

.risk-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; margin-bottom: 18px; position: relative; z-index: 1; }
.risk-card { padding: 21px; border-radius: 18px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); }
.risk-top { display: flex; justify-content: space-between; align-items: center; color: #a5beb4; font-size: 9px; letter-spacing: .08em; }
.risk-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--risk-color, #fff); box-shadow: 0 0 0 6px color-mix(in srgb, var(--risk-color, #fff) 12%, transparent); }
.risk-card strong { display: block; font-size: 29px; line-height: 1; margin-top: 18px; letter-spacing: -.04em; }
.risk-card small { display: block; margin-top: 8px; color: #8eaaa0; font-size: 10px; }

.chart-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 15px; position: relative; z-index: 1; }
.chart-card {
  min-height: 400px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.chart-card-wide { min-height: 440px; }
.card-heading { display: flex; justify-content: space-between; align-items: flex-start; }
.card-heading small { color: #829f94; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.card-heading h3 { margin: 4px 0 0; font-size: 17px; }
.chart-badge { padding: 6px 9px; border-radius: 999px; color: #bed2ca; background: rgba(255,255,255,.06); font-size: 9px; }
.chart { min-height: 315px; margin-top: 8px; }
.chart-fallback { min-height: 300px; display: grid; place-items: center; color: #9db7ad; text-align: center; padding: 30px; }

.data-panel {
  margin-top: 16px;
  border-radius: 24px;
  background: #fff;
  color: #14261f;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}
.data-panel-top { display: flex; justify-content: space-between; align-items: center; padding: 26px 28px 18px; }
.data-panel-top small { color: #78867f; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.data-panel-top h3 { margin: 4px 0 0; font-size: 21px; }
.data-panel .button-secondary { background: #f4f7f5; color: #173128; border-color: #dfe7e3; }
.filter-bar { display: grid; grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, .6fr)); gap: 10px; padding: 0 28px 18px; }
.search-box { min-height: 44px; border: 1px solid #dce5e0; border-radius: 12px; display: flex; align-items: center; gap: 9px; padding: 0 13px; background: #f8faf9; }
.search-box svg { width: 17px; color: #798a82; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: #14261f; }
.filter-bar select {
  min-height: 44px;
  border: 1px solid #dce5e0;
  border-radius: 12px;
  padding: 0 13px;
  background: #f8faf9;
  color: #29483c;
  outline: none;
}
.table-meta { display: flex; justify-content: space-between; padding: 12px 28px; border-top: 1px solid #e8eeeb; color: #73847c; font-size: 10px; }
.table-wrap { overflow: auto; border-top: 1px solid #e8eeeb; }
table { width: 100%; border-collapse: collapse; min-width: 1050px; }
th { padding: 13px 16px; text-align: left; background: #f3f7f5; border-bottom: 1px solid #e2eae6; color: #60726a; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
th:first-child, td:first-child { padding-left: 28px; }
th:last-child, td:last-child { padding-right: 28px; }
th button { display: inline-flex; align-items: center; gap: 5px; border: 0; background: transparent; color: inherit; padding: 0; font-weight: 700; text-transform: inherit; letter-spacing: inherit; cursor: pointer; }
th button svg { width: 13px; }
td { padding: 15px 16px; border-bottom: 1px solid #edf1ef; font-size: 11px; vertical-align: middle; }
tbody tr { transition: background .18s ease; }
tbody tr:hover { background: #f7faf8; }
.customer-name { font-weight: 700; max-width: 360px; }
.customer-code { color: #2d6b53; font-weight: 700; font-size: 10px; }
.cell-muted { color: #71837b; }
.area-cell { font-weight: 700; }
.align-right { text-align: right; }
.owner-chip, .warehouse-chip, .status-chip { display: inline-flex; align-items: center; min-height: 26px; padding: 0 9px; border-radius: 999px; font-size: 9px; font-weight: 700; white-space: nowrap; }
.owner-chip { background: #e9f5ef; color: #1c6d4e; }
.warehouse-chip { background: #eff3f1; color: #53665d; }
.status-chip { background: var(--chip-bg); color: var(--chip-color); }
.empty-row td { text-align: center; padding: 46px 20px; color: #7a8b83; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 14px; padding: 18px; }
.pagination .icon-button { background: #f4f7f5; color: #143127; border-color: #dfe7e3; }
.pagination span { color: #6d7e76; font-size: 10px; min-width: 90px; text-align: center; }

.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.kpi-card {
  min-height: 230px;
  padding: 26px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.kpi-card::after {
  content: "";
  position: absolute; width: 180px; height: 180px; border-radius: 50%;
  right: -90px; bottom: -90px; border: 1px solid color-mix(in srgb, var(--brand) 18%, transparent);
  box-shadow: 0 0 0 36px color-mix(in srgb, var(--brand) 3%, transparent), 0 0 0 72px color-mix(in srgb, var(--brand) 2%, transparent);
}
.kpi-top { display: flex; justify-content: space-between; align-items: center; }
.kpi-index { font-size: 10px; color: var(--muted); font-weight: 800; letter-spacing: .12em; }
.kpi-icon { width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center; background: color-mix(in srgb, var(--brand) 10%, transparent); color: var(--brand); }
.kpi-icon svg { width: 18px; }
.kpi-target { display: block; margin-top: 34px; font-size: 45px; line-height: 1; letter-spacing: -.055em; color: var(--brand); }
.kpi-card h3 { margin: 16px 0 0; font-size: 15px; max-width: 260px; line-height: 1.45; }
.kpi-rule { margin-top: 18px; width: 58px; height: 3px; border-radius: 9px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); }

.execution-banner {
  margin-top: 18px;
  padding: 28px 30px;
  min-height: 150px;
  border-radius: 23px;
  background: linear-gradient(135deg, #09271f, #0c4c37);
  color: #e9fbf3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}
.execution-copy { display: flex; align-items: center; gap: 25px; }
.execution-number { font-size: 76px; line-height: 1; font-weight: 800; letter-spacing: -.08em; color: rgba(255,255,255,.12); }
.execution-copy small { color: var(--brand-2); font-size: 9px; letter-spacing: .14em; font-weight: 800; }
.execution-copy h3 { margin: 7px 0 0; max-width: 760px; font-size: 18px; line-height: 1.45; }

footer {
  width: var(--container);
  margin: 0 auto;
  padding: 40px 0 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: var(--muted);
}
footer strong { color: var(--ink); font-size: 12px; letter-spacing: .08em; }
footer p { margin: 3px 0 0; font-size: 10px; }
footer > span { font-size: 10px; }

.data-dialog {
  width: min(650px, calc(100vw - 32px));
  max-height: 80vh;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(0,0,0,.35);
}
.data-dialog::backdrop { background: rgba(2,17,12,.68); backdrop-filter: blur(7px); }
.dialog-header { display: flex; justify-content: space-between; align-items: center; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.dialog-header small { color: var(--brand); font-size: 9px; letter-spacing: .15em; font-weight: 800; }
.dialog-header h3 { margin: 4px 0 0; font-size: 22px; }
.dialog-body { padding: 24px 26px 28px; display: grid; gap: 12px; }
.note-item { display: grid; grid-template-columns: auto 1fr; gap: 13px; padding: 15px; border-radius: 15px; background: var(--surface-2); }
.note-item span { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; color: var(--warning); background: color-mix(in srgb, var(--warning) 12%, transparent); font-weight: 800; font-size: 10px; }
.note-item p { margin: 2px 0 0; color: var(--muted); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .mobile-menu-button { display: inline-grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 880px; }
  .hero-dashboard { min-height: 560px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .goal-card, .goal-card:nth-child(n) { grid-column: span 6; }
  .department-grid { grid-template-columns: 1fr; }
  .classification-grid { grid-template-columns: repeat(3, 1fr); }
  .workflow { grid-template-columns: repeat(4, 1fr); }
  .workflow-step:nth-child(4)::after { display: none; }
  .growth-grid { grid-template-columns: repeat(2, 1fr); }
  .risk-grid { grid-template-columns: repeat(3, 1fr); }
  .chart-grid { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1380px); --topbar-height: 68px; }
  .topbar { padding: 0 14px; }
  .brand { min-width: 0; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 10px; }
  .brand-copy small { display: none; }
  .topbar-actions .button { display: none; }
  .section { padding-top: 78px; padding-bottom: 78px; }
  .section-muted, .section-dark { padding-left: 14px; padding-right: 14px; }
  .hero { padding-top: 116px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { display: grid; }
  .hero-dashboard { min-height: 520px; padding: 22px; }
  .hero-ring-wrap { height: 345px; }
  .hero-ring { width: 220px; height: 220px; }
  .hero-ring::after { width: 172px; height: 172px; }
  .ring-orbit { inset: 42px; }
  .orbit-two { inset: 64px; }
  .orbit-three { inset: 13px; }
  .mini-timeline { gap: 6px; }
  .mini-phase { padding: 10px; min-height: 67px; }
  .mini-phase > span { display: none; }
  .metric-grid { grid-template-columns: 1fr 1fr; margin-top: 30px; gap: 10px; }
  .metric-card { min-height: 145px; padding: 19px; }
  .metric-value { font-size: 25px; }
  .management-note { grid-template-columns: auto 1fr; }
  .management-note .text-button { grid-column: 2; justify-self: start; }
  .section-heading { display: grid; gap: 18px; margin-bottom: 32px; }
  .section-heading h2 { font-size: 38px; }
  .goal-grid { grid-template-columns: 1fr; }
  .goal-card, .goal-card:nth-child(n) { grid-column: auto; min-height: 200px; }
  .roadmap { grid-template-columns: 1fr; }
  .phase-tabs { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .phase-tab { justify-content: center; padding: 0 8px; }
  .phase-stage { padding: 20px; }
  .phase-intro { display: grid; }
  .phase-intro h3 { font-size: 25px; }
  .department-body { grid-template-columns: 1fr; }
  .classification-grid { grid-template-columns: 1fr 1fr; }
  .workflow { grid-template-columns: 1fr 1fr; }
  .workflow-step:nth-child(even)::after { display: none; }
  .workflow-step:not(:last-child)::after { content: "↓"; right: auto; left: 50%; top: auto; bottom: -20px; transform: translateX(-50%); }
  .branch-grid { grid-template-columns: 1fr 1fr; }
  .growth-grid { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr 1fr; }
  .risk-card:last-child { grid-column: span 2; }
  .chart-card { padding: 18px; min-height: 360px; }
  .filter-bar { grid-template-columns: 1fr; padding-inline: 18px; }
  .data-panel-top { padding: 22px 18px 16px; }
  .table-meta { padding-inline: 18px; }
  .kpi-grid { grid-template-columns: 1fr; }
  .execution-banner { display: grid; }
  .execution-copy { align-items: flex-start; gap: 14px; }
  .execution-number { font-size: 54px; }
  footer { display: grid; }
}
@media (max-width: 460px) {
  .metric-grid { grid-template-columns: 1fr; }
  .classification-grid, .branch-grid { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .risk-card:last-child { grid-column: auto; }
  .phase-tab span { display: none; }
}

@media print {
  :root { --bg: #fff; --surface: #fff; --ink: #111; --muted: #555; --line: #ddd; }
  body { background: #fff; }
  .topbar, .mobile-menu, .scroll-progress, .hero-actions, .source-chip, .management-note button, .phase-tabs, .filter-bar, .pagination, #exportCsv, footer { display: none !important; }
  .section, .section-muted, .section-dark { width: 100%; padding: 35px 24px; background: #fff !important; color: #111 !important; break-inside: avoid; }
  .hero { padding-top: 30px; min-height: auto; }
  .hero-dashboard { min-height: 520px; }
  .section-heading.light h2, .section-dark, .section-heading.light > p { color: #111 !important; }
  .chart-card { background: #f7f7f7; border-color: #ddd; }
  .risk-card { background: #f4f4f4; color: #111; }
  .data-panel { box-shadow: none; border: 1px solid #ddd; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
