/* ── GROWTH ── */
.growth-grid {
  display: block;
}

.growth-flow {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.growth-flow-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.growth-flow-line-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.growth-flow-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.growth-flow-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(240, 115, 0, .3);
}

.growth-flow-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, .1);
  margin-left: 12px;
}

.growth-flow-body {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rl);
  padding: 12px 16px;
  background: rgba(255, 255, 255, .05);
}

.growth-flow-month-tag {
  font-size: 12px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 4px;
}

.growth-flow-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.growth-flow-step-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  margin-top: 4px;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
  .growth-flow {
    flex-direction: column;
    gap: 0;
  }
  .growth-flow-row {
    flex-direction: row;
    gap: 10px;
  }
  .growth-flow-line-col {
    flex-direction: column;
    width: 32px;
    flex-shrink: 0;
  }
  .growth-flow-line {
    width: 2px;
    height: auto;
    margin: 4px 0;
  }
  .growth-flow-body {
    margin-bottom: 12px;
  }
}


.support-system-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.support-system-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r);
  padding: 10px 12px;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.support-system-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.support-system-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.support-system-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin-top: 2px;
}

/* ── KANBAN ── */
.workflow-kanban {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.workflow-kanban::-webkit-scrollbar {
  display: none;
}

.kanban-col {
  flex-shrink: 0;
  width: 164px;
  background: var(--bg2);
  border-radius: var(--rl);
  padding: 10px;
}

.kanban-col-header {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.kanban-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.kanban-task-card {
  background: #fff;
  border-radius: var(--r);
  padding: 8px 10px;
  margin-bottom: 6px;
  border: 1px solid var(--bdr);
  font-size: 12px;
  color: var(--ink);
  line-height: 1.5;
}

.kanban-task-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 4px;
}

/* ── TERMINAL ── */
.dev-terminal {
  background: #0f172a;
  border-radius: var(--rl);
  padding: 16px 18px;

  font-size: 13px;
  line-height: 1.95;
}

.terminal-header {
  display: flex;
  gap: 5px;
  margin-bottom: 11px;
}

.terminal-header-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.terminal-line-prompt {
  color: #00c875;
}

.terminal-line-command {
  color: #e2e8f0;
}

.terminal-line-output {
  color: #94a3b8;
}

.terminal-line-cursor {
  display: inline-block;
  width: 7px;
  height: 11px;
  background: #00c875;
  animation: bl .8s step-end infinite;
  vertical-align: middle;
}

/* ── CODE PEEK ── */
.code-preview-window {
  background: #1e293b;
  border-radius: var(--rl);
  padding: 16px 18px;

  font-size: 13px;
  line-height: 1.9;
  position: relative;
  color: #e2e8f0;
}

.code-preview-window::before {
  content: '● ● ●';
  position: absolute;
  top: 8px;
  left: 13px;
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: 3px;
}

.code-preview-body {
  margin-top: 15px;
}

.k {
  color: #f472b6;
}

.s {
  color: #86efac;
}

.cv {
  color: #60a5fa;
}

.n {
  color: #fbbf24;
}

.cm {
  color: #475569;
}

/* ── TECH CHIPS ── */
.tech-stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.tech-stack-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.tech-stack-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── OFFICE ── */
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 13px;
}

.office-card {
  background: #fff;
  border-radius: var(--rxl);
  padding: 19px;
  border: 1px solid var(--bdr);
}

.office-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.office-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 9px;
}

.office-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--r);
  margin-bottom: 12px;
}

.office-detail-row {
  display: flex;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 3px;
}

.office-detail-key {
  font-weight: 600;
  color: var(--navy);
  min-width: 90px;
  flex-shrink: 0;
}

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

.benefit-card {
  background: #fff;
  border-radius: var(--rl);
  padding: 12px;
  border: 1px solid var(--bdr);
  text-align: center;
}

.benefit-value {

  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.benefit-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── EXP ── */
.career-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 768px) {
  .career-exp-grid {
    grid-template-columns: 1fr;
  }
}

.career-exp-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r);
  padding: 13px 14px;
}

.career-exp-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.career-exp-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
}

.stats-chart-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rl);
  padding: 17px;
}

.stats-chart-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;

}

.stats-chart-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}

.stats-chart-left-text {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  min-width: 58px;
}

.stats-chart-bar-bg {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .08);
  border-radius: 3px;
  overflow: hidden;
}

.stats-chart-bar-fill {
  height: 100%;
  border-radius: 3px;
}

.stats-chart-right-text {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  min-width: 50px;
  text-align: right;
}

.stats-chart-footer-fork {
  display: flex;
  gap: 6px;
  margin-top: 11px;
}

.stats-chart-footer-btn {
  flex: 1;
  background: var(--accent);
  border-radius: 6px;
  padding: 7px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.stats-chart-footer-btn.is-alt {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
}

/* ── EVENTS ── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 16px;
}

.event-card {
  background: #fff;
  border-radius: var(--rxl);
  padding: 15px;
  border: 1px solid var(--bdr);
  transition: .2s;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, .07);
}

.event-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 9px;
}

.event-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.event-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── RESPONSIVE ── */
@media screen and (max-width: 768px) {
  .office-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }
}

