/* ===== KBICT — AI Service Engineering theme (light) ===== */
:root {
  --bg: #f7f8f6;
  --bg-alt: #eef1ee;
  --panel: #ffffff;
  --line: #dde4dd;
  --text: #1b2b23;
  --navy: #16283d;
  --muted: #5b6d63;
  --green: #16a34a;
  --green-strong: #15803d;
  --green-dim: rgba(22, 163, 74, 0.09);
  --orange: #ea7d1e;
  --orange-strong: #c2610a;
  --shadow: 0 6px 20px rgba(22, 40, 61, 0.06);
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Pretendard Variable', Pretendard, -apple-system, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 4.5rem; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--green-strong); text-decoration: none; }
a:hover { text-decoration: underline; }

/* 명확한 focus 스타일 */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0.6rem; text-decoration: none; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 248, 246, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.nav.scrolled {
  box-shadow: 0 6px 24px rgba(22, 40, 61, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--green); flex: none; }
.brand-text {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.brand-sub {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.nav-links { display: flex; gap: 1.7rem; }
.nav-links a {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--green-strong); text-decoration: none; }
.nav-links a.active {
  color: var(--green-strong);
  border-bottom-color: var(--green);
}
/* 언어 전환 (EN | 中文 | ES | 日本語 | 한국어) */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.lang-switch > span { color: var(--line); }
.lang-switch a { padding: 0.3rem 0; }
.lang-switch a.current {
  color: var(--green-strong);
  font-weight: 700;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.6rem;
  cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--green); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 8rem 1.5rem 5rem;
  /* 은은한 그래디언트 메쉬 (저채도 그린·네이비) */
  background:
    radial-gradient(560px 380px at 82% 12%, rgba(22, 163, 74, 0.07), transparent 62%),
    radial-gradient(680px 460px at 8% 88%, rgba(22, 40, 61, 0.055), transparent 62%),
    radial-gradient(420px 320px at 45% 45%, rgba(22, 163, 74, 0.035), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-tag {
  font-family: var(--mono);
  color: var(--green-strong);
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.3rem;
}
.hero-title {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 1.3rem;
  word-break: keep-all;
}
.hero-title .accent { color: var(--green-strong); }
.hero-title .orange { color: var(--orange-strong); }
.hero-desc {
  color: var(--text);
  font-size: 1.02rem;
  margin-bottom: 0.9rem;
  word-break: keep-all;
}
.hero-sub {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 2rem;
  word-break: keep-all;
}
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-points {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero-point { display: flex; flex-direction: column; }
.point-key {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-strong);
}
.point-val { font-size: 0.8rem; color: var(--muted); }

/* Hero 비주얼: 생명주기 미니 다이어그램 */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lifecycle-mini {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem 0.6rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.lm-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--green-dim) 100%);
}
.lm-num {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--orange-strong);
  letter-spacing: 0.15em;
}
.lm-name {
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.lm-desc { font-size: 0.76rem; color: var(--muted); }
.lm-arrow { color: var(--green); justify-self: center; }
/* 데스크톱 2x2 배치: 가욍데(2번째) 화살표는 숨기고 01→02 / 03→04 흐름만 표시 */
.lifecycle-mini > svg:nth-of-type(2) { display: none; }
.lm-caption {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.9rem;
  border: 1px solid var(--green);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--green-strong);
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.25);
}
.btn-primary:disabled {
  background: var(--muted);
  border-color: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-ghost { color: var(--navy); border-color: var(--line); background: var(--panel); }
.btn-ghost:hover { color: var(--green-strong); border-color: var(--green); }
.btn-block { width: 100%; }

/* ===== SECTIONS ===== */
.section { max-width: 1200px; margin: 0 auto; padding: 6.75rem 1.5rem; }
.section-alt {
  max-width: none;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 3rem; max-width: 780px; }
.section-tag {
  font-family: var(--mono);
  color: var(--green-strong);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  margin-bottom: 0.7rem;
}
.section-head h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.35;
  margin-bottom: 0.8rem;
  word-break: keep-all;
}
.section-desc { color: var(--muted); word-break: keep-all; line-height: 1.75; }

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.2rem;
}
.cards-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card-flat:hover { transform: none; box-shadow: none; border-color: var(--green); }
.card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green-dim);
  color: var(--green-strong);
  margin-bottom: 1rem;
  flex: none;
}
.card-code {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--orange-strong);
  margin-bottom: 0.6rem;
}
.card h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 0.7rem; word-break: keep-all; }
.card > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; word-break: keep-all; }
.card ul { list-style: none; margin-bottom: 0.2rem; }
.card li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.32rem 0 0.32rem 1.15rem;
  position: relative;
  border-top: 1px dashed var(--line);
}
.card li::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath d='M1 4l2 2 4-4' fill='none' stroke='%2315803d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.card-model {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.84rem;
  color: var(--text);
}
.card-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--green-strong);
  margin-right: 0.5rem;
}
.card-cta-link {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-strong);
}
.card-cta-link:hover { text-decoration: underline; }

/* ===== LIVE SERVICES (운영 중 서비스 카드) ===== */
.card { position: relative; }
/* 카드 상단 풀폭 예시화면 */
.card-media {
  display: block;
  margin: -1.7rem -1.7rem 1.15rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}
.card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.card-media:hover img { transform: scale(1.03); }
.live-badge {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green-strong);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(22, 163, 74, 0.35);
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse { 50% { opacity: 0.35; } }
.card-live-link {
  margin-top: auto;
  padding-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--green-strong);
}
.card-live-link svg { transition: transform 0.2s; }
.card-live-link:hover { text-decoration: none; color: var(--green); }
.card-live-link:hover svg { transform: translate(2px, -2px); }
.card-login-note {
  margin-top: 0.35rem;
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
/* 카드 하단 정렬: card-model 뒤에 링크가 오는 경우 */
.card-model + .card-live-link { margin-top: 0; }

/* ===== LIFECYCLE ===== */
.lifecycle {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  counter-reset: lc;
}
.lc-step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.lc-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.4rem;
  right: -0.95rem;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: rotate(45deg);
  z-index: 2;
  background: transparent;
}
.lc-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.lc-num {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  flex: none;
}
.lc-head h3 {
  font-family: var(--mono);
  font-size: 1.02rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.lc-kor { font-family: var(--sans); font-size: 0.85rem; color: var(--muted); font-weight: 400; }
.lc-step ul { list-style: none; margin-bottom: 1.1rem; }
.lc-step li {
  font-size: 0.84rem;
  padding: 0.3rem 0 0.3rem 1.05rem;
  position: relative;
  border-top: 1px dashed var(--line);
}
.lc-step li::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 0.68rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--green);
}
.lc-output {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text);
  word-break: keep-all;
}
.lc-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--orange-strong);
  margin-bottom: 0.25rem;
}

/* ===== TECH ARCHITECTURE ===== */
.arch { display: flex; flex-direction: column; gap: 1rem; }
.arch-layer {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
}
.arch-layer h3 {
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.arch-role { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.9rem; word-break: keep-all; }
.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chips span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.32rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  transition: color 0.2s, border-color 0.2s;
}
.chips span:hover { color: var(--green-strong); border-color: var(--green); }

/* ===== APPROACH CTA ===== */
.approach-cta { margin-top: 2.4rem; text-align: center; }

/* ===== VALUES ===== */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.value {
  border-left: 3px solid var(--green);
  padding: 0.4rem 0 0.4rem 1.3rem;
}
.value-num {
  font-family: var(--mono);
  color: var(--orange-strong);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.4rem;
}
.value h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.45rem; }
.value p { color: var(--muted); font-size: 0.9rem; word-break: keep-all; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.contact-info dl > div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-info dt {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--green-strong);
  margin-bottom: 0.3rem;
}
.contact-info dd { color: var(--text); font-size: 0.95rem; word-break: keep-all; }
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.1rem; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.req { color: #dc2626; }
.opt { color: var(--muted); font-weight: 400; font-size: 0.76rem; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.92rem;
  padding: 0.72rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
}
.form-row input[aria-invalid="true"],
.form-row select[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
  border-color: #dc2626;
}
.form-row textarea { resize: vertical; }
.form-row-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.form-row-check input {
  width: auto;
  margin-top: 0.3rem;
  flex: none;
}
.form-row-check label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0;
}
.privacy-note { color: var(--muted); font-size: 0.78rem; }
/* honeypot: 사람에게는 보이지 않게 */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  min-height: 1.2em;
}
.form-status.ok { color: var(--green-strong); }
.form-status.err { color: #dc2626; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.8rem 1.5rem;
  text-align: center;
  background: var(--bg-alt);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.footer-brand svg { color: var(--green); }
.footer-desc { color: var(--muted); font-size: 0.85rem; max-width: 560px; margin: 0 auto 0.8rem; word-break: keep-all; }
.footer-copy { color: var(--muted); font-size: 0.82rem; }
.footer-tag {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-top: 0.9rem;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn, .card, .nav-links a, .chips span, .nav { transition: none; }
  .card:hover { transform: none; }
  .btn:hover { transform: none; }
  .live-dot { animation: none; }
  .card-live-link svg { transition: none; }
  .card-media img { transition: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .hero-visual { max-width: 560px; }
  .lifecycle { grid-template-columns: repeat(2, 1fr); }
  .lc-step:not(:last-child)::after { display: none; }
  .brand-sub { display: none; }
  .nav-links { gap: 1.1rem; }
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(247, 248, 246, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.95rem 1.5rem;
    border-top: 1px solid var(--line);
    border-bottom: none;
  }
  .nav-links .lang-switch {
    padding: 0.95rem 1.5rem;
    border-top: 1px solid var(--line);
    gap: 0.8rem;
  }
  .nav-links .lang-switch a { border-top: none; padding: 0; }
  .brand-sub { display: none; }
  .section { padding: 4.2rem 1.2rem; }
  .hero { padding: 6.5rem 1.2rem 3.6rem; }
  .lifecycle { grid-template-columns: 1fr; }
  .lc-step { padding-left: 1.8rem; }
  /* 모바일 세로 타임라인 */
  .lc-step::before {
    content: '';
    position: absolute;
    left: 0.55rem;
    top: 1.6rem;
    bottom: -1.2rem;
    width: 2px;
    background: var(--line);
  }
  .lc-step:last-child::before { display: none; }
  .lifecycle-mini { grid-template-columns: 1fr; grid-template-rows: none; }
  .lm-arrow { transform: rotate(90deg); }
  .lifecycle-mini > svg:nth-of-type(2) { display: block; }
}
