@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  --canvas: #ffffff;
  --surface: #f7fafc;
  --soft: #e3f2fd;
  --support: #90caf9;
  --action: #2196f3;
  --anchor: #0d47a1;
  --ink: #111827;
  --muted: #5b6472;
  --line: #d7dee7;
  --line-strong: #aab5c3;
  --success: #137a56;
  --success-soft: #e3f5ed;
  --warning: #9a5a00;
  --warning-soft: #fff4dc;
  --danger: #b42318;
  --shadow: 0 18px 48px rgba(13, 71, 161, 0.1);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Pretendard, "Noto Sans KR", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--support);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.section-compact {
  padding-block: 80px;
}

.surface-band {
  background: var(--surface);
}

.soft-band {
  background: var(--soft);
}

.anchor-band {
  background: var(--anchor);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 18px;
  color: var(--action);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.anchor-band .eyebrow,
.home-hero .eyebrow {
  color: var(--support);
}

.section-heading {
  max-width: 720px;
  font-size: 36px;
  font-weight: 780;
}

.section-lead {
  max-width: 640px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.anchor-band .section-lead {
  color: #dbeafe;
}

.heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 44px;
}

.heading-row .section-lead {
  margin-top: 0;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(215, 222, 231, 0.85);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  color: var(--anchor);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.05;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--action);
  content: "";
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.icon-button,
.menu-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  line-height: 0;
}

.icon-button > svg,
.menu-button > svg,
.button > svg,
.inline-icon > svg,
.feature-icon > svg,
.status-icon > svg {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
}

.menu-button {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 16px;
  border-radius: 6px;
  background: var(--anchor);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.language-wrap {
  position: relative;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 180px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.language-menu button {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  text-align: left;
  font-size: 13px;
}

.language-menu button:hover {
  background: var(--soft);
}

.mobile-panel {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 20px;
  background: var(--anchor);
  color: #fff;
}

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

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-panel .brand {
  color: #fff;
}

.mobile-panel .brand small {
  color: var(--support);
}

.mobile-close {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.mobile-nav {
  display: grid;
  align-content: center;
  gap: 6px;
}

.mobile-nav a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 22px;
  font-weight: 750;
}

.mobile-panel-foot {
  display: grid;
  gap: 10px;
}

.mobile-panel-foot .button {
  width: 100%;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.button-primary {
  background: var(--action);
  color: #fff;
}

.button-anchor {
  background: var(--anchor);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--anchor);
}

.button-outline {
  border-color: var(--line-strong);
  color: var(--ink);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button:hover,
.header-cta:hover {
  filter: brightness(0.96);
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--anchor);
  color: #fff;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  gap: 56px;
  align-items: center;
  min-height: 680px;
  padding-block: 72px 94px;
}

.home-hero h1 {
  max-width: 650px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
}

.home-hero h1 span {
  display: block;
  color: var(--support);
}

.hero-lead {
  max-width: 590px;
  margin-top: 24px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #c3ddf7;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.hero-image {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: 62% 50%;
  border-radius: 8px;
}

.hero-status {
  position: absolute;
  bottom: -34px;
  left: -34px;
  width: min(350px, calc(100% - 20px));
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 56px rgba(3, 30, 76, 0.28);
}

.status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.status-head strong {
  font-size: 14px;
}

.status-label {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding-inline: 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--anchor);
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.status-label.success {
  background: var(--success-soft);
  color: var(--success);
}

.status-label.warning {
  background: var(--warning-soft);
  color: var(--warning);
}

.hero-status-rule {
  height: 1px;
  margin-block: 16px;
  background: var(--line);
}

.hero-status small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.hero-status p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.question-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.question-item {
  min-height: 150px;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.question-item:first-child {
  border-left: 0;
}

.question-item span {
  color: var(--action);
  font-size: 11px;
  font-weight: 850;
}

.question-item h3 {
  margin-top: 18px;
  font-size: 20px;
}

.question-item p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.report-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.report-nav {
  padding: 28px 24px;
  background: var(--anchor);
  color: #fff;
}

.report-nav h3 {
  font-size: 18px;
}

.report-tabs {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.report-tabs button {
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #dbeafe;
  text-align: left;
  font-size: 14px;
}

.report-tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--anchor);
  font-weight: 850;
}

.report-main {
  min-height: 430px;
  padding: 32px 36px;
}

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

.report-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.report-panel-head h3 {
  font-size: 23px;
}

.report-panel-head p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-block: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  padding: 22px 18px;
  border-left: 1px solid var(--line);
}

.metric:first-child {
  border-left: 0;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric strong {
  display: block;
  margin-top: 7px;
  color: var(--anchor);
  font-size: 30px;
  font-variant-numeric: tabular-nums;
}

.next-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border-radius: 6px;
  background: var(--soft);
}

.next-panel span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.next-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--anchor);
  font-size: 14px;
  font-weight: 850;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.history-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
  height: 210px;
  margin-top: 28px;
  padding: 26px 22px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.history-bar {
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: center;
}

.history-bar i {
  display: block;
  width: min(54px, 70%);
  height: var(--bar-height);
  border-radius: 5px 5px 0 0;
  background: var(--action);
}

.history-bar span {
  position: absolute;
  bottom: -2px;
  transform: translateY(100%);
  color: var(--muted);
  font-size: 11px;
}

.goal-checklist {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.goal-check {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.status-icon,
.feature-icon,
.inline-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  line-height: 0;
}

.status-icon {
  border-radius: 6px;
  background: var(--soft);
  color: var(--anchor);
}

.learning-loop {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.loop-list {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.loop-button {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 12px 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #dbeafe;
  text-align: left;
}

.loop-button b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  font-size: 12px;
}

.loop-button strong {
  font-size: 16px;
}

.loop-button[aria-selected="true"] {
  color: #fff;
}

.loop-button[aria-selected="true"] b {
  border-color: #fff;
  background: #fff;
  color: var(--anchor);
}

.loop-detail {
  min-height: 430px;
  padding: 38px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.loop-detail .step-index {
  color: var(--action);
  font-size: 12px;
  font-weight: 850;
}

.loop-detail h3 {
  max-width: 520px;
  margin-top: 24px;
  font-size: 31px;
}

.loop-detail > p {
  max-width: 580px;
  margin-top: 18px;
  color: var(--muted);
}

.example-line {
  margin-top: 34px;
  padding: 20px;
  border-left: 4px solid var(--action);
  background: var(--soft);
}

.example-line small {
  color: var(--muted);
  font-weight: 750;
}

.example-line strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
}

.goal-selector {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
  margin-top: 42px;
}

.segment-list {
  display: grid;
  align-content: start;
  gap: 8px;
}

.segment-button {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-weight: 750;
  text-align: left;
}

.segment-button[aria-selected="true"] {
  border-color: var(--anchor);
  background: var(--anchor);
  color: #fff;
}

.goal-result {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.goal-copy {
  padding: 34px;
}

.goal-copy small {
  color: var(--action);
  font-weight: 850;
}

.goal-copy h3 {
  margin-top: 22px;
  font-size: 28px;
}

.goal-copy p {
  margin-top: 14px;
  color: var(--muted);
}

.goal-evidence {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background: var(--soft);
}

.goal-evidence div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  border-top: 1px solid #bfdaef;
}

.goal-evidence div:first-child {
  border-top: 0;
}

.goal-evidence b {
  color: var(--action);
  font-size: 13px;
}

.goal-evidence span {
  font-size: 14px;
  font-weight: 700;
}

.plan-preview {
  overflow: auto;
  margin-top: 42px;
  border-top: 2px solid var(--ink);
}

.plan-row {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  min-width: 820px;
  border-bottom: 1px solid var(--line);
}

.plan-cell {
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 17px 18px;
  border-left: 1px solid var(--line);
  font-size: 14px;
}

.plan-cell:first-child {
  border-left: 0;
  color: var(--muted);
}

.plan-row.plan-head .plan-cell {
  min-height: 90px;
  align-items: flex-end;
  font-size: 17px;
  font-weight: 850;
}

.plan-row.plan-head .plan-cell:first-child {
  font-size: 11px;
}

.plan-cell.recommended {
  background: var(--soft);
}

.plan-note-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.operation-item {
  min-height: 260px;
  padding: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.operation-item:first-child {
  border-left: 0;
}

.feature-icon {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  color: var(--support);
}

.operation-item h3 {
  margin-top: 30px;
  font-size: 21px;
}

.operation-item p {
  margin-top: 12px;
  color: #dbeafe;
  font-size: 14px;
}

.scope-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
}

.scope-note p {
  color: #dbeafe;
  font-size: 13px;
}

.accordion-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  width: 100%;
  min-height: 76px;
  align-items: center;
  padding: 12px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 17px;
  font-weight: 750;
}

.accordion-trigger .inline-icon {
  justify-self: end;
  transition: transform 160ms ease;
}

.accordion-trigger[aria-expanded="true"] .inline-icon {
  transform: rotate(180deg);
}

.accordion-panel {
  max-width: 820px;
  padding: 0 54px 24px 0;
  color: var(--muted);
}

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

.consult-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.consult-copy h2 {
  font-size: 42px;
}

.consult-copy p {
  margin-top: 20px;
  color: #dbeafe;
  font-size: 17px;
}

.consult-points {
  display: grid;
  gap: 11px;
  margin-top: 30px;
}

.consult-points li {
  display: flex;
  gap: 10px;
  align-items: center;
  list-style: none;
  color: #dbeafe;
  font-size: 14px;
}

.consult-form,
.inquiry-form {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  font-size: 13px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea,
.support-search input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  font-size: 15px;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 12px;
}

.check-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  font-size: 12px;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.form-helper {
  color: var(--muted);
  font-size: 11px;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #a8d8c5;
  border-radius: 6px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 14px;
  font-weight: 700;
}

.form-status.visible {
  display: block;
}

.subpage-hero {
  padding-block: 90px 86px;
  background: var(--anchor);
  color: #fff;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: end;
}

.subpage-hero h1 {
  max-width: 760px;
  font-size: 48px;
  font-weight: 800;
}

.subpage-hero p {
  max-width: 600px;
  color: #dbeafe;
  font-size: 18px;
}

.subpage-hero .hero-actions {
  margin-top: 26px;
}

.image-band {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 460px;
}

.image-band-media {
  min-height: 460px;
}

.image-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  background: var(--soft);
}

.image-band-copy h2 {
  font-size: 34px;
}

.image-band-copy p {
  margin-top: 18px;
  color: var(--muted);
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.phase-item {
  min-height: 310px;
  padding: 30px;
  border-left: 1px solid var(--line);
}

.phase-item:first-child {
  border-left: 0;
}

.phase-item .phase-num {
  color: var(--action);
  font-size: 12px;
  font-weight: 850;
}

.phase-item h3 {
  margin-top: 54px;
  font-size: 23px;
}

.phase-item p {
  margin-top: 14px;
  color: var(--muted);
}

.scope-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 42px;
}

.scope-column {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.scope-column h3 {
  font-size: 21px;
}

.scope-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
}

.scope-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.scope-list .inline-icon {
  width: 22px;
  height: 22px;
  color: var(--success);
}

.scope-column.defer .scope-list .inline-icon {
  color: var(--warning);
}

.curriculum-stage {
  display: grid;
  grid-template-columns: 190px 1fr 1fr 1fr;
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stage-label,
.stage-cell {
  min-height: 210px;
  padding: 26px;
  border-left: 1px solid var(--line);
}

.stage-label {
  border-left: 0;
  background: var(--anchor);
  color: #fff;
}

.stage-label small {
  color: var(--support);
  font-weight: 800;
}

.stage-cell strong {
  display: block;
  color: var(--action);
  font-size: 12px;
}

.stage-cell h3 {
  margin-top: 36px;
  font-size: 20px;
}

.stage-cell p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.mode-control {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mode-control button {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  font-size: 13px;
  font-weight: 750;
}

.mode-control button[aria-pressed="true"] {
  background: var(--anchor);
  color: #fff;
}

.plan-full-table {
  overflow: auto;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.plan-full-table table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.plan-full-table th,
.plan-full-table td {
  min-width: 180px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.plan-full-table tr:last-child td {
  border-bottom: 0;
}

.plan-full-table th:last-child,
.plan-full-table td:last-child {
  border-right: 0;
}

.plan-full-table th {
  background: var(--surface);
  font-size: 15px;
}

.plan-full-table th.recommended,
.plan-full-table td.recommended {
  background: var(--soft);
}

.plan-price {
  display: block;
  margin-top: 12px;
  color: var(--anchor);
  font-size: 17px;
  font-weight: 850;
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.policy-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.policy-item h3 {
  font-size: 18px;
}

.policy-item p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 14px;
}

.test-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.test-step {
  min-height: 330px;
  padding: 30px;
  border-left: 1px solid var(--ink);
}

.test-step:first-child {
  border-left: 0;
  background: var(--soft);
}

.test-step b {
  color: var(--action);
  font-size: 14px;
}

.test-step h3 {
  margin-top: 66px;
  font-size: 23px;
}

.test-step p {
  margin-top: 14px;
  color: var(--muted);
}

.result-preview {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  overflow: hidden;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.result-summary {
  padding: 32px;
  background: var(--anchor);
  color: #fff;
}

.result-summary small {
  color: var(--support);
  font-weight: 800;
}

.result-summary strong {
  display: block;
  margin-top: 22px;
  font-size: 34px;
}

.result-summary p {
  margin-top: 12px;
  color: #dbeafe;
  font-size: 14px;
}

.result-details {
  padding: 32px;
}

.result-detail-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
}

.result-detail-row:first-child {
  border-top: 0;
}

.result-detail-row span {
  color: var(--muted);
  font-size: 13px;
}

.result-detail-row strong {
  font-size: 15px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 720px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.dashboard-sidebar {
  padding: 28px 22px;
  background: var(--anchor);
  color: #fff;
}

.dashboard-user {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.dashboard-user small {
  color: var(--support);
}

.dashboard-user strong {
  display: block;
  margin-top: 5px;
}

.dashboard-nav {
  display: grid;
  gap: 6px;
  margin-top: 22px;
}

.dashboard-nav button {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #dbeafe;
  font-size: 14px;
  text-align: left;
}

.dashboard-nav button[aria-selected="true"] {
  background: #fff;
  color: var(--anchor);
  font-weight: 800;
}

.dashboard-content {
  padding: 32px;
}

.dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.dashboard-head h2 {
  font-size: 28px;
}

.dashboard-head p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.dashboard-metric {
  min-height: 132px;
  padding: 22px;
  border-left: 1px solid var(--line);
}

.dashboard-metric:first-child {
  border-left: 0;
}

.dashboard-metric span {
  color: var(--muted);
  font-size: 12px;
}

.dashboard-metric strong {
  display: block;
  margin-top: 10px;
  color: var(--anchor);
  font-size: 27px;
}

.session-list,
.file-list,
.notice-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.session-row,
.file-row,
.notice-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr auto;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.file-row {
  grid-template-columns: 1.4fr 0.8fr 0.8fr auto;
}

.notice-row {
  grid-template-columns: 110px 1fr 110px auto;
}

.row-title {
  font-weight: 750;
}

.row-muted {
  color: var(--muted);
}

.small-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.empty-state {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 32px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  text-align: center;
}

.empty-state .status-icon {
  margin-inline: auto;
}

.empty-state h3 {
  margin-top: 18px;
  font-size: 20px;
}

.empty-state p {
  max-width: 430px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.support-search {
  position: relative;
  max-width: 620px;
  margin-top: 30px;
}

.support-search input {
  min-height: 54px;
  padding-left: 48px;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.support-search input::placeholder {
  color: #c7dbf2;
}

.support-search .inline-icon {
  position: absolute;
  top: 5px;
  left: 3px;
  color: var(--support);
}

.support-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.support-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.support-categories button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  font-weight: 750;
}

.support-categories button[aria-pressed="true"] {
  border-color: var(--anchor);
  background: var(--anchor);
  color: #fff;
}

.notice-empty {
  display: none;
  margin-top: 20px;
  color: var(--muted);
}

.notice-empty.visible {
  display: block;
}

.site-footer {
  padding-block: 62px 38px;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 64px;
}

.footer-brand {
  color: #fff;
}

.footer-brand small {
  color: #aab9ca;
}

.footer-copy {
  max-width: 420px;
  margin-top: 20px;
  color: #aab9ca;
  font-size: 13px;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: #aab9ca;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid #303a47;
  color: #8d9aaa;
  font-size: 11px;
}

.demo-notice {
  padding: 12px 24px;
  background: #070b11;
  color: #9aa8b8;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 160;
  right: 20px;
  bottom: 20px;
  max-width: min(380px, calc(100% - 40px));
  padding: 14px 16px;
  transform: translateY(150%);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 13px;
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.toast.visible {
  transform: translateY(0);
  opacity: 1;
}

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

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .home-hero-inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 38px;
  }

  .home-hero h1 {
    font-size: 48px;
  }

  .hero-visual,
  .hero-image {
    min-height: 430px;
    height: 430px;
  }

  .consult-band,
  .learning-loop {
    gap: 46px;
  }

  .goal-selector {
    grid-template-columns: 270px minmax(0, 1fr);
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .section {
    padding-block: 88px;
  }

  .heading-row,
  .subpage-hero-grid,
  .consult-band,
  .support-grid,
  .image-band {
    grid-template-columns: 1fr;
  }

  .heading-row,
  .subpage-hero-grid,
  .consult-band {
    gap: 26px;
  }

  .home-hero-inner {
    grid-template-columns: 1fr;
    padding-block: 64px 106px;
  }

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

  .hero-visual {
    min-height: 460px;
  }

  .hero-image {
    height: 460px;
  }

  .hero-status {
    right: 18px;
    left: 18px;
    width: auto;
  }

  .report-shell,
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .report-nav {
    padding: 20px;
  }

  .report-tabs {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 18px;
  }

  .report-tabs button {
    padding-inline: 8px;
    text-align: center;
  }

  .learning-loop {
    grid-template-columns: 1fr;
  }

  .goal-selector {
    grid-template-columns: 1fr;
  }

  .segment-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .segment-button {
    justify-content: center;
    padding: 0 10px;
    text-align: center;
  }

  .segment-button svg {
    display: none;
  }

  .operations-grid,
  .phase-grid,
  .policy-list,
  .test-steps {
    grid-template-columns: 1fr;
  }

  .operation-item,
  .phase-item,
  .test-step {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .anchor-band .operation-item {
    border-top-color: rgba(255, 255, 255, 0.28);
  }

  .operation-item:first-child,
  .phase-item:first-child,
  .test-step:first-child {
    border-top: 0;
  }

  .phase-item h3,
  .test-step h3 {
    margin-top: 28px;
  }

  .scope-split,
  .result-preview {
    grid-template-columns: 1fr;
  }

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

  .stage-label,
  .stage-cell {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stage-label {
    border-top: 0;
  }

  .dashboard-sidebar {
    padding: 20px;
  }

  .dashboard-nav {
    grid-template-columns: repeat(4, 1fr);
  }

  .dashboard-nav button {
    justify-content: center;
    padding: 0 8px;
  }

  .dashboard-nav button span {
    display: none;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 40px);
  }

  .section,
  .section-compact {
    padding-block: 72px;
  }

  .section-heading {
    font-size: 30px;
  }

  .section-lead {
    font-size: 16px;
  }

  .header-inner {
    min-height: 68px;
  }

  .header-tools .language-wrap,
  .header-tools > .icon-button {
    display: none;
  }

  .home-hero-inner {
    min-height: 0;
    padding-block: 54px 104px;
  }

  .home-hero h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual,
  .hero-image {
    min-height: 360px;
    height: 360px;
  }

  .question-strip {
    grid-template-columns: 1fr;
  }

  .question-item {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .question-item:first-child {
    border-top: 0;
  }

  .report-main,
  .dashboard-content {
    padding: 24px 18px;
  }

  .report-panel-head,
  .dashboard-head {
    flex-direction: column;
  }

  .metric-row,
  .dashboard-summary {
    grid-template-columns: 1fr;
  }

  .metric,
  .dashboard-metric {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metric:first-child,
  .dashboard-metric:first-child {
    border-top: 0;
  }

  .next-panel,
  .goal-result {
    grid-template-columns: 1fr;
  }

  .loop-detail {
    min-height: 0;
    padding: 28px 22px;
  }

  .loop-detail h3 {
    font-size: 27px;
  }

  .loop-button {
    grid-template-columns: 42px 1fr;
  }

  .loop-button > svg {
    display: none;
  }

  .segment-list {
    grid-template-columns: 1fr;
  }

  .goal-copy {
    padding: 26px 22px;
  }

  .scope-note,
  .plan-note-row,
  .form-actions,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .consult-copy h2 {
    font-size: 34px;
  }

  .consult-form,
  .inquiry-form {
    padding: 24px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .subpage-hero {
    padding-block: 72px 68px;
  }

  .subpage-hero h1 {
    font-size: 36px;
  }

  .subpage-hero p {
    font-size: 16px;
  }

  .image-band-media {
    min-height: 320px;
  }

  .image-band-copy {
    padding: 40px 20px;
  }

  .image-band-copy h2 {
    font-size: 29px;
  }

  .scope-split {
    grid-template-columns: 1fr;
  }

  .result-detail-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .dashboard-layout {
    border-radius: 0;
    margin-inline: -20px;
  }

  .session-row,
  .file-row,
  .notice-row {
    grid-template-columns: 1fr auto;
    gap: 7px 14px;
    padding-block: 16px;
  }

  .session-row > :nth-child(2),
  .file-row > :nth-child(2),
  .notice-row > :nth-child(1) {
    grid-column: 1;
  }

  .session-row > :nth-child(3),
  .file-row > :nth-child(3),
  .notice-row > :nth-child(3) {
    grid-column: 1;
  }

  .session-row > :last-child,
  .file-row > :last-child,
  .notice-row > :last-child {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .demo-notice {
    padding-inline: 20px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
